diff --git a/CHANGELOG.md b/CHANGELOG.md index c52e9d0..972da39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog ---- develop --- +--- 3.0 --- * issue#31: In systemctl status : CMDPHP: ERROR: A DB Exec Failed!, Error: Unknown column 'INF' in 'field list' * issue#32: Netflow v9 - Netflow source not providing either prefix or nexthop information @@ -17,6 +17,7 @@ * issue#45: FlowView tab missing * issue#46: Schedules dont work * issue#47: flowData not showing data +* issue#48: Missing Code in ip_filter function * issue#49: Flowview IPFIX throwing errors * issue#50: Flowview errors cause it to become automatically disabled * issue#51: FlowView Throws Errors When No Filters Exist @@ -33,6 +34,7 @@ * feature: Remove use of Flow Tools * feature: Support IPv4 and IPv6 * feature: Support daily and hourly partitioning +* feature: Run Schedules in Background --- 2.1 --- * issue: Prepare for sunrise theme in 1.1.17 diff --git a/INFO b/INFO index f897a60..df5c60e 100644 --- a/INFO +++ b/INFO @@ -5,5 +5,5 @@ longname = FlowView author = The Cacti Group email = homepage = http://www.cacti.net -compat = 1.2.4 +compat = 1.2.14 capabilities = online_view:0, online_mgmt:0, offline_view:0, offline_mgmt:0, remote_collect:0 diff --git a/flowview.php b/flowview.php index 98f337a..460be62 100644 --- a/flowview.php +++ b/flowview.php @@ -43,6 +43,7 @@ flowview_request_vars(); break; case 'chartdata': + flowview_request_vars(); flowview_get_chartdata(); break; case 'gettimespan': diff --git a/flowview_process.php b/flowview_process.php index 279208d..d37a84f 100644 --- a/flowview_process.php +++ b/flowview_process.php @@ -24,6 +24,7 @@ chdir(dirname(__FILE__) . '/../../'); include('./include/cli_check.php'); +include_once('./lib/poller.php'); include_once('./plugins/flowview/functions.php'); ini_set('max_execution_time', 0); @@ -95,13 +96,10 @@ AND ($t - sendinterval > lastsent)"); if (count($schedules)) { + $php = read_config_option('path_php_binary'); foreach ($schedules as $s) { - db_execute_prepared('UPDATE plugin_flowview_schedules - SET lastsent = ? - WHERE id = ?', - array($r, $s['id'])); - - plugin_flowview_run_schedule($s['id']); + debug('Running Schedule ' . $s['id']); + exec_background($php, ' -q ' . $config['base_path'] . '/plugins/flowview/run_schedule.php --schedule=' . $s['id']); } } diff --git a/functions.php b/functions.php index 27bb8a5..b38c357 100644 --- a/functions.php +++ b/functions.php @@ -818,7 +818,9 @@ function flowview_display_filter($data) { $('td').tooltip(); - initTimespan(); + if ($('#date1').val() == '') { + initTimespan(); + } // Setup the charts var charts = [ 'chartbytes', 'chartpackets', 'chartflows' ]; @@ -829,9 +831,16 @@ function flowview_display_filter($data) { switch(value) { case 'chartbytes': $.getJSON('flowview.php?action=chartdata&type=bytes' + - '&domains=' + $('#domains').is(':checked') + - '&report=' + $('#report').val() + - '&query=', function(data) { + '&domains=' + $('#domains').is(':checked') + + '&report=' + $('#report').val() + + '&sortfield=' + ($('#sortfield').val() != '' ? $('#sortfield').val():'') + + '&sortvalue=' + ($('#sortfield').val() != '' ? $('#sortfield option:selected').html():'Bytes') + + '&cutofflines=' + $('#cutofflines').val() + + '&cutoffoctets=' + $('#cutoffoctets').val() + + '&exclude=' + $('#exclude').val() + + '&date1=' + $('#date1').val() + + '&date2=' + $('#date2').val() + + '&query=' + $('#query').val(), function(data) { var chartBytes = c3.generate({ bindto: '#chartbytes', @@ -878,9 +887,16 @@ function flowview_display_filter($data) { break; case 'chartflows': $.getJSON('flowview.php?action=chartdata&type=flows' + - '&domains=' + $('#domains').is(':checked') + - '&report=' + $('#report').val() + - '&query=', function(data) { + '&domains=' + $('#domains').is(':checked') + + '&report=' + $('#report').val() + + '&sortfield=' + ($('#sortfield').val() != '' ? $('#sortfield').val():'') + + '&sortvalue=' + ($('#sortfield').val() != '' ? $('#sortfield option:selected').html():'Bytes') + + '&cutofflines=' + $('#cutofflines').val() + + '&cutoffoctets=' + $('#cutoffoctets').val() + + '&exclude=' + $('#exclude').val() + + '&date1=' + $('#date1').val() + + '&date2=' + $('#date2').val() + + '&query=' + $('#query').val(), function(data) { var chartFlows = c3.generate({ bindto: '#chartflows', @@ -927,9 +943,16 @@ function flowview_display_filter($data) { break; case 'chartpackets': $.getJSON('flowview.php?action=chartdata&type=packets' + - '&domains=' + $('#domains').is(':checked') + - '&report=' + $('#report').val() + - '&query=', function(data) { + '&domains=' + $('#domains').is(':checked') + + '&report=' + $('#report').val() + + '&sortfield=' + ($('#sortfield').val() != '' ? $('#sortfield').val():'') + + '&sortvalue=' + ($('#sortfield').val() != '' ? $('#sortfield option:selected').html():'Bytes') + + '&cutofflines=' + $('#cutofflines').val() + + '&cutoffoctets=' + $('#cutoffoctets').val() + + '&exclude=' + $('#exclude').val() + + '&date1=' + $('#date1').val() + + '&date2=' + $('#date2').val() + + '&query=' + $('#query').val(), function(data) { var chartPackets = c3.generate({ bindto: '#chartpackets', @@ -1023,6 +1046,7 @@ function initTimespan() { if ($('#predefined_timespan').val() != '0') { $.getJSON(urlPath + 'plugins/flowview/flowview.php' + '?action=gettimespan' + + '&init=true' + '&predefined_timespan='+$('#predefined_timespan').val(), function(data) { $('#date1').val(data['current_value_date1']); $('#date2').val(data['current_value_date2']); @@ -1036,6 +1060,7 @@ function applyTimespan() { if ($('#predefined_timespan').val() != '0') { $.getJSON(urlPath + 'plugins/flowview/flowview.php' + '?action=gettimespan' + + '&init=apply' + '&predefined_timespan='+$('#predefined_timespan').val(), function(data) { $('#date1').val(data['current_value_date1']); $('#date2').val(data['current_value_date2']); @@ -1129,6 +1154,12 @@ function plugin_flowview_run_schedule($id) { WHERE id = ?', array($schedule['query_id'])); + // Get the timespan from the query + get_timespan($span, time(), $query['timespan'], read_user_setting('first_weekdayid')); + + $start = $span['begin_now']; + $end = $span['end_now']; + $fromemail = read_config_option('settings_from_email'); if ($fromemail == '') { $fromemail = 'cacti@cactiusers.org'; @@ -1143,26 +1174,24 @@ function plugin_flowview_run_schedule($id) { $from[1] = $fromname; $subject = __('Netflow - %s', $schedule['title'], 'flowview'); - $date2 = time(); - $date1 = $date2 - $schedule['sendinterval']; - $body = "" . PHP_EOL; + $body = "" . PHP_EOL; $body .= "' . PHP_EOL; $body .= '
' . PHP_EOL; $body .= '

' . html_escape($schedule['title']) . '

' . PHP_EOL; - $body .= '

From ' . date('Y-m-d H:i:s', $date1) . ' to ' . date('Y-m-d H:i:s', $date2) . '

' . PHP_EOL; + $body .= '

From ' . date('Y-m-d H:i:s', $start) . ' to ' . date('Y-m-d H:i:s', $end) . '

' . PHP_EOL; $body .= '

Using Query \'' . html_escape($query['name']) . '\'

' . PHP_EOL; $body .= '
' . PHP_EOL; - $data = load_data_for_filter($schedule['query_id'], $date1, $date2); + $data = load_data_for_filter($schedule['query_id'], $start, $end); if ($data !== false) { $body .= $data['table']; } - $body .= '' . PHP_EOL; + $body .= '' . PHP_EOL; $body_text = strip_tags(str_replace('
', "\n", $body)); @@ -1177,10 +1206,48 @@ function plugin_flowview_run_schedule($id) { mailer($from, $schedule['email'], '', '', '', $subject, $body, $body_text, '', $headers); } -/** creatfilter($sessionid) +function get_flowview_session_key($id, $start, $end) { + if (isset_request_var('sortfield')) { + $key = $id . '_' . $start . '_' . $end . '_' . + get_request_var('report') . '_' . + get_request_var('sortfield') . '_' . + get_request_var('cutofflines') . '_' . + get_request_var('cutoffoctets') . '_' . + get_request_var('exclude'); + + return md5($key); + } else { + return md5($id . '_' . $start . '_' . $end); + } +} + +/** purge_flowview_session() + * + * This function removes expired sessions from the users session + * + */ +function purge_flowview_sessions() { + $now = time(); + $i = 0; + + if (isset($_SESSION['sess_flowdata'])) { + foreach($_SESSION['sess_flowdata'] as $key => $data) { + if ($now > $data['timeout']) { + //cacti_log('Purging Session:' . $key); + unset($_SESSION['sess_flowdata'][$key]); + } + + $i++; + } + } + + //cacti_log('There are currently ' . $i . ' sessions cached.'); +} + +/** load_data_for_filter($id, $start, $end) + * + * This function will run the query against the database of pull it from a saved session. * - * This function creates the NetFlow Report for the UI. It presents this in a table - * format and returns as a test string to the calling function. */ function load_data_for_filter($id = 0, $start = false, $end = false) { global $config; @@ -1188,114 +1255,24 @@ function load_data_for_filter($id = 0, $start = false, $end = false) { $output = ''; $title = ''; $sql_where = ''; - $histogram = false; $time = time(); $data = array(); if ($id > 0) { - $query_id = $id; - $session = false; - } elseif (isset_request_var('query')) { - $query_id = get_request_var('query'); - $start = strtotime(get_request_var('date1')); - $end = strtotime(get_request_var('date2')); - $key = md5($query_id . '_' . $start . '_' . $end); - $session = true; + $session = false; + } elseif (isset_request_var('query') && get_request_var('query') > 0) { + $id = get_request_var('query'); + $start = strtotime(get_request_var('date1')); + $end = strtotime(get_request_var('date2')); + $session = true; + + purge_flowview_sessions(); } else { return false; } - $key = md5($query_id . '_' . $start . '_' . $end); - - if ($session && isset($_SESSION['sess_flowdata'][$key])) { - return $_SESSION['sess_flowdata'][$key]; - } - - /* let's calculate the title and then session id */ - if ($title == '') { - if (isset_request_var('query') && get_filter_request_var('query') > 0) { - $title = db_fetch_cell_prepared('SELECT name - FROM plugin_flowview_queries - WHERE id = ?', - array($query_id)); - } else { - $title = __('New Flow', 'flowview'); - } - } - - if ($query_id > 0) { - if ($session) { - if (get_request_var('statistics') != 0) { - $histogram = true; - } - - /* source ip filter */ - if (get_request_var('sourceip') != '') { - $sql_where = get_ip_filter($sql_where, get_request_var('sourceip'), 'src_addr'); - } - - /* source interface filter */ - if (get_request_var('sourceinterface') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('sourceinterface'), 'src_if'); - } - - /* source port filter */ - if (get_request_var('sourceport') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('sourceport'), 'src_port'); - } - - /* source as filter */ - if (get_request_var('sourceas') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('sourceas'), 'src_as'); - } - - /* destination ip filter */ - if (get_request_var('destip') != '') { - $sql_where = get_ip_filter($sql_where, get_request_var('destip'), 'dst_addr'); - } - - /* destination interface filter */ - if (get_request_var('destinterface') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('destinterface'), 'dst_if'); - } - - /* destination port filter */ - if (get_request_var('destport') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('destport'), 'dst_port'); - } - - /* destination as filter */ - if (get_request_var('destas') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('destas'), 'dst_as'); - } - - /* protocols filter */ - if (get_request_var('protocols') != '' && get_request_var('protocols') != '0') { - $sql_where = get_numeric_filter($sql_where, get_request_var('protocols'), 'protocol'); - } - - /* tcp flags filter */ - if (get_request_var('tcpflags') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('tcpflags'), 'flags'); - } - - /* tos filter */ - if (get_request_var('tosfields') != '') { - $sql_where = get_numeric_filter($sql_where, get_request_var('tosfields'), 'tos'); - } - - /* date time range */ - $sql_where = get_date_filter($sql_where, get_request_var('date1'), get_request_var('date2'), get_request_var('includeif')); - } else { - $sql_where = ''; - } - - /* Run the query */ - $data = run_flow_query($query_id, $title, $sql_where, $start, $end); - - if ($session) { - $_SESSION['sess_flowdata'][$key] = $data; - } + if ($id > 0) { + $data = run_flow_query($session, $id, $start, $end); } else { $data['id'] = 0; } @@ -1303,6 +1280,11 @@ function load_data_for_filter($id = 0, $start = false, $end = false) { return $data; } +/** get_numeric_filter($sql_where, $value, $column) + * + * This function constructs a $sql_where from numeric data + * + */ function get_numeric_filter($sql_where, $value, $column) { $values = array(); @@ -1327,8 +1309,12 @@ function get_numeric_filter($sql_where, $value, $column) { return $sql_where; } +/** get_ip_filter($sql_where, $value, $column) + * + * This function constructs a $sql_where from ip ranges + * + */ function get_ip_filter($sql_where, $value, $column) { -return $sql_where; if ($value != '') { $values = array(); $parts = explode(',', $value); @@ -1340,8 +1326,19 @@ function get_ip_filter($sql_where, $value, $column) { $part = trim($part); if (strpos($part, '/') !== false) { - $pp = explode('/', $part); - $sql_where .= ($i == 0 ? '':' OR ') . "$column & INET6_ATON('" . $pp[0] . "')"; + // Split to $addr['subnet'], $addr['ip'] + $addr = cacti_pton($part); + + if (isset($addr['subnet'])) { + // Example looking for IP's in the network to the right: 192.168.11.0/24 + // src_addr & inet6_aton('255.255.255.0') = inet6_aton('192.168.11.0') + $subnet = inet_ntop($addr['subnet']); + $network = inet_ntop($addr['subnet'] & $addr['ip']); + + $sql_where .= ($i == 0 ? '':' OR ') . "$column & INET6_ATON('" . $subnet . "') = INET6_ATON('" . $network . "')"; + } else { + raise_message('subnet_filter', __('Subnet Filter: %s is not a value CIDR format', $part, 'flowview'), MESSAGE_LEVEL_ERROR); + } } else { $sql_where .= ($i == 0 ? '':' OR ') . "$column = INET6_ATON('$part')"; } @@ -1350,16 +1347,20 @@ function get_ip_filter($sql_where, $value, $column) { } $sql_where .= ')'; - - if (cacti_sizeof($values)) { - // return ($sql_where != '' ? ' AND ':'WHERE ') . '`' . $column . '` IN (' . implode(',', $values) . ')'; - } } return $sql_where; } -function get_date_filter($sql_where, $date1, $date2, $range_type) { +/** get_date_filter($sql_where, $value, $column) + * + * This function constructs a $sql_where a date range and range type + * + */ +function get_date_filter($sql_where, $start, $end, $range_type = 1) { + $date1 = date('Y-m-d H:i:s', $start); + $date2 = date('Y-m-d H:i:s', $end); + switch($range_type) { case 1: // Any part in specified time span $sql_where .= ($sql_where != '' ? ' AND ':'WHERE ') . @@ -1384,6 +1385,11 @@ function get_date_filter($sql_where, $date1, $date2, $range_type) { return $sql_where; } +/** get_tables_for_query($start, $end) + * + * This function creates an array of tables for a query + * + */ function get_tables_for_query($start, $end) { global $config, $graph_timespans; @@ -1423,16 +1429,23 @@ function get_tables_for_query($start, $end) { return $inc_tables; } +/** flowview_get_chartdata() + * + * This function returns chart data from the session + * + */ function flowview_get_chartdata() { $query_id = get_filter_request_var('query'); $type = get_nfilter_request_var('type'); $domains = get_nfilter_request_var('domains'); $report = get_nfilter_request_var('report'); + $start = strtotime(get_nfilter_request_var('date1')); + $end = strtotime(get_nfilter_request_var('date2')); if (substr($report, 0, 1) == 's') { $report = trim(get_nfilter_request_var('report'), 'sp'); - $output = $_SESSION['sess_flowdata']; + $output = run_flow_query(true, $query_id, $start, $end); if (cacti_sizeof($output['data']) && $report > 0 && $report < 99) { $columns = array_keys($output['data'][0]); @@ -1470,6 +1483,11 @@ function flowview_get_chartdata() { exit; } +/** get_category_columns($statistics, $domain) + * + * This function helps construct the columns required for a query + * + */ function get_category_columns($statistics, $domain) { $category = array(); @@ -1562,13 +1580,28 @@ function get_category_columns($statistics, $domain) { return $category; } -function run_flow_query($query_id, $title, $sql_where, $start, $end) { +/** run_flow_query($session, $query_id, $start, $end) + * + * This function either retries a query from the cache or runs + * the flow query in the case where the session does not exist + * or a Schedule is being run. + * + */ +function run_flow_query($session, $query_id, $start, $end) { global $config, $graph_timespans; - if (!intval($query_id)) { + if (empty($query_id)) { return false; } + $key = get_flowview_session_key($query_id, $start, $end); + $time = time(); + $sql_where = ''; + + if ($session && isset($_SESSION['sess_flowdata'][$key])) { + return $_SESSION['sess_flowdata'][$key]['data']; + } + include($config['base_path'] . '/plugins/flowview/arrays.php'); $data = db_fetch_row_prepared('SELECT * @@ -1576,6 +1609,19 @@ function run_flow_query($query_id, $title, $sql_where, $start, $end) { WHERE id = ?', array($query_id)); + $title = db_fetch_cell_prepared('SELECT name + FROM plugin_flowview_queries + WHERE id = ?', + array($query_id)); + + if (isset_request_var('includeif') && get_request_var('includeif') > 0) { + $sql_where = get_date_filter($sql_where, $start, $end, get_request_var('includeif')); + } elseif ($data['includeif'] > 0) { + $sql_where = get_date_filter($sql_where, $start, $end, $data['includeif']); + } else { + $sql_where = get_date_filter($sql_where, $start, $end); + } + // Handle Limit Override if (isset_request_var('cutofflines') && get_request_var('cutofflines') != 999999) { $lines = get_request_var('cutofflines'); @@ -1979,7 +2025,7 @@ function run_flow_query($query_id, $title, $sql_where, $start, $end) { $sql = "$sql_query FROM ($sql) AS rs $sql_groupby $sql_having $sql_order $sql_limit"; - cacti_log(str_replace("\n", " ", str_replace("\t", '', $sql))); + //cacti_log(str_replace("\n", " ", str_replace("\t", '', $sql))); if ($data['statistics'] == 99) { $results = db_fetch_row($sql); @@ -2270,6 +2316,11 @@ function run_flow_query($query_id, $title, $sql_where, $start, $end) { $output['table'] = $table; $output['title'] = $title; + if ($session) { + $_SESSION['sess_flowdata'][$key]['data'] = $output; + $_SESSION['sess_flowdata'][$key]['timeout'] = $time + 600; + } + return $output; } } @@ -3463,8 +3514,13 @@ function create_raw_partition($table) { $data['primary'] = 'sequence'; $data['keys'][] = array('name' => 'listener_id', 'columns' => 'listener_id'); $data['unique_keys'][] = array('name' => 'keycol', 'columns' => 'listener_id`,`src_addr`,`src_port`,`dst_addr`,`dst_port', 'unique' => true); - $data['type'] = 'InnoDB'; - $data['comment'] = 'Plugin Flowview - Details Report Data'; + + $data['type'] = 'InnoDB'; + $data['collate'] = 'utf8mb4_unicode_ci'; + $data['charset'] = 'utf8mb4'; + $data['row_format'] = 'Dynamic'; + $data['comment'] = 'Plugin Flowview - Details Report Data'; + api_plugin_db_table_create('flowview', $table, $data); } diff --git a/locales/LC_MESSAGES/ar-SA.mo b/locales/LC_MESSAGES/ar-SA.mo index 1222e5e..b90eafd 100644 Binary files a/locales/LC_MESSAGES/ar-SA.mo and b/locales/LC_MESSAGES/ar-SA.mo differ diff --git a/locales/LC_MESSAGES/bg-BG.mo b/locales/LC_MESSAGES/bg-BG.mo index 042308e..75488db 100644 Binary files a/locales/LC_MESSAGES/bg-BG.mo and b/locales/LC_MESSAGES/bg-BG.mo differ diff --git a/locales/LC_MESSAGES/de-DE.mo b/locales/LC_MESSAGES/de-DE.mo index 68cd979..16ebc4b 100644 Binary files a/locales/LC_MESSAGES/de-DE.mo and b/locales/LC_MESSAGES/de-DE.mo differ diff --git a/locales/LC_MESSAGES/el-GR.mo b/locales/LC_MESSAGES/el-GR.mo index 67da860..a67a1f0 100644 Binary files a/locales/LC_MESSAGES/el-GR.mo and b/locales/LC_MESSAGES/el-GR.mo differ diff --git a/locales/LC_MESSAGES/es-ES.mo b/locales/LC_MESSAGES/es-ES.mo index a1f3d1d..ece7f7c 100644 Binary files a/locales/LC_MESSAGES/es-ES.mo and b/locales/LC_MESSAGES/es-ES.mo differ diff --git a/locales/LC_MESSAGES/fr-FR.mo b/locales/LC_MESSAGES/fr-FR.mo index f1bde20..8d148a9 100644 Binary files a/locales/LC_MESSAGES/fr-FR.mo and b/locales/LC_MESSAGES/fr-FR.mo differ diff --git a/locales/LC_MESSAGES/he-IL.mo b/locales/LC_MESSAGES/he-IL.mo index 36b82fb..0a56baf 100644 Binary files a/locales/LC_MESSAGES/he-IL.mo and b/locales/LC_MESSAGES/he-IL.mo differ diff --git a/locales/LC_MESSAGES/hi-IN.mo b/locales/LC_MESSAGES/hi-IN.mo index 1389c79..a4680f9 100644 Binary files a/locales/LC_MESSAGES/hi-IN.mo and b/locales/LC_MESSAGES/hi-IN.mo differ diff --git a/locales/LC_MESSAGES/it-IT.mo b/locales/LC_MESSAGES/it-IT.mo index 97eae6c..18e39da 100644 Binary files a/locales/LC_MESSAGES/it-IT.mo and b/locales/LC_MESSAGES/it-IT.mo differ diff --git a/locales/LC_MESSAGES/ja-JP.mo b/locales/LC_MESSAGES/ja-JP.mo index 6c846f7..67ea46c 100644 Binary files a/locales/LC_MESSAGES/ja-JP.mo and b/locales/LC_MESSAGES/ja-JP.mo differ diff --git a/locales/LC_MESSAGES/ko-KR.mo b/locales/LC_MESSAGES/ko-KR.mo index c2857fb..9683975 100644 Binary files a/locales/LC_MESSAGES/ko-KR.mo and b/locales/LC_MESSAGES/ko-KR.mo differ diff --git a/locales/LC_MESSAGES/nl-NL.mo b/locales/LC_MESSAGES/nl-NL.mo index 9845317..17da1d3 100644 Binary files a/locales/LC_MESSAGES/nl-NL.mo and b/locales/LC_MESSAGES/nl-NL.mo differ diff --git a/locales/LC_MESSAGES/pl-PL.mo b/locales/LC_MESSAGES/pl-PL.mo index 53e0293..aeae4f2 100644 Binary files a/locales/LC_MESSAGES/pl-PL.mo and b/locales/LC_MESSAGES/pl-PL.mo differ diff --git a/locales/LC_MESSAGES/pt-BR.mo b/locales/LC_MESSAGES/pt-BR.mo index 2216b36..9357c2a 100644 Binary files a/locales/LC_MESSAGES/pt-BR.mo and b/locales/LC_MESSAGES/pt-BR.mo differ diff --git a/locales/LC_MESSAGES/pt-PT.mo b/locales/LC_MESSAGES/pt-PT.mo index 21b3727..cdcbd8c 100644 Binary files a/locales/LC_MESSAGES/pt-PT.mo and b/locales/LC_MESSAGES/pt-PT.mo differ diff --git a/locales/LC_MESSAGES/ru-RU.mo b/locales/LC_MESSAGES/ru-RU.mo index 5f386a1..53b4cb5 100644 Binary files a/locales/LC_MESSAGES/ru-RU.mo and b/locales/LC_MESSAGES/ru-RU.mo differ diff --git a/locales/LC_MESSAGES/sv-SE.mo b/locales/LC_MESSAGES/sv-SE.mo index 904f2b7..c37518f 100644 Binary files a/locales/LC_MESSAGES/sv-SE.mo and b/locales/LC_MESSAGES/sv-SE.mo differ diff --git a/locales/LC_MESSAGES/tr-TR.mo b/locales/LC_MESSAGES/tr-TR.mo index 0d78ae5..ddc00ba 100644 Binary files a/locales/LC_MESSAGES/tr-TR.mo and b/locales/LC_MESSAGES/tr-TR.mo differ diff --git a/locales/LC_MESSAGES/vi-VN.mo b/locales/LC_MESSAGES/vi-VN.mo index 2f46a42..5521ba2 100644 Binary files a/locales/LC_MESSAGES/vi-VN.mo and b/locales/LC_MESSAGES/vi-VN.mo differ diff --git a/locales/LC_MESSAGES/zh-CN.mo b/locales/LC_MESSAGES/zh-CN.mo index 6562ed3..95d719c 100644 Binary files a/locales/LC_MESSAGES/zh-CN.mo and b/locales/LC_MESSAGES/zh-CN.mo differ diff --git a/locales/LC_MESSAGES/zh-TW.mo b/locales/LC_MESSAGES/zh-TW.mo index 8f41ecd..30add8d 100644 Binary files a/locales/LC_MESSAGES/zh-TW.mo and b/locales/LC_MESSAGES/zh-TW.mo differ diff --git a/locales/po/ar-SA.po b/locales/po/ar-SA.po index 0ba52a7..778953c 100644 --- a/locales/po/ar-SA.po +++ b/locales/po/ar-SA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 19:54-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "منفذ مصدر UDP / TCP" msgid "UDP/TCP Port" msgstr "منفذ UDP / TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP المصدر" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "عنوان الانترنت المطلوب" @@ -98,13 +98,13 @@ msgstr "واجهة الانتاج" msgid "Input/Output Interface" msgstr "الإدخال / الإخراج واجهة" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "مصدر AS" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "الوجهة AS" @@ -119,7 +119,7 @@ msgstr "المصدر / الوجهة AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "بادئة المصدر" @@ -193,7 +193,7 @@ msgstr "لا حدود" msgid "%s Bytes" msgstr "٪ s بايت" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "الكل" @@ -207,7 +207,7 @@ msgstr "منفذ المصدر (المنافذ)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "يطفو" @@ -216,8 +216,8 @@ msgstr "يطفو" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "بايت" @@ -226,8 +226,8 @@ msgstr "بايت" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "الحزم" @@ -243,18 +243,18 @@ msgstr "عنوان الانترنت المطلوب" msgid "Port" msgstr "منفذ" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Dest IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "عناوين البريد الإلكتروني" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "بروتوكول" @@ -279,290 +279,295 @@ msgstr "TOS" msgid "Destingation Prefix" msgstr "بادئة الوجهة" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP المصدر" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "عنوان الانترنت المطلوب" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "منفذ المصدر (المنافذ)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "عنوان الانترنت المطلوب" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "وقت البدء" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "وقت النهاية" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "نشط" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / كيه" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "الخبر" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "فلوريدا" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "أعلام" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP المصدر" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "عنوان الانترنت المطلوب" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "مرشحات واضحة" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "فلتر" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "فلتر" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "مستمع" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "المسبقة" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "تقرير: [جديد]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "المطبوعة:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "الإحصائيات" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "تقارير الاحصائيات" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "تقارير الطباعة" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "إدارة الجداول" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "حل العناوين:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "حل العناوين:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "نعم" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "لا" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "فرز الحقل:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "البايت الأدنى:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "بروتوكولات" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "بروتوكولات" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "أعلام TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "حقول TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "منفذ المصدر (المنافذ)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "واجهة المصدر" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "ميناء ميناء" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "واجهة السد" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "الجهاز [جديد]" msgid "FlowView Listeners" msgstr "مستمع FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "بحث" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "أذهب" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "ضبط / تحديث المرشحات" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "واضح" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "مرشحات واضحة" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "المستمعين" @@ -750,34 +755,38 @@ msgstr "انقر فوق \"متابعة\" لتمكين الجدول (الجداو msgid "You must select at least one Filter." msgstr "يجب عليك اختيار جهاز واحد على الأقل." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "مرشحات التدفق" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "التصفيات" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "الافتراضي" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "اسم المرشح" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "اسم المضيف القرار" @@ -828,7 +837,7 @@ msgstr "جدول جديد" msgid "Enter a Report Title for the FlowView Schedule." msgstr "أدخل عنوان التقرير لجدول FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "مفعل" @@ -903,18 +912,22 @@ msgstr "تقرير: [عدل:٪ s]" msgid "Report: [new]" msgstr "تقرير: [جديد]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "تاريخ البدء محدد" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "جداول FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "جداول" @@ -924,22 +937,22 @@ msgstr "جداول" msgid "Schedule Title" msgstr "عنوان الجدول" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "الفترة" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "تاريخ البداية" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "إرسال التالي" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "البريد الإلكتروني" @@ -959,25 +972,20 @@ msgstr "تقرير: [عدل:٪ s]" msgid "Filter: [new]" msgstr "تقرير: [جديد]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "تقارير الطباعة" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "تقارير الطباعة" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "مخصص" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "تاريخ الانتهاء محدد" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "اظهر المخفي" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "جدول" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "بايت بايت" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "شريط الحزم" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "شريط التدفقات" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "غير معروف" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "الصبار Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "صافي التدفق - ٪" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "تدفق جديد" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "٪ s بايت" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "٪ s بايت" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "مصدر AS" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "مصدر AS" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "ميناء ميناء" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "ميناء ميناء" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "البادئة" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "الحزم" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "احصائيات ملخصة" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "توزيع حجم حزمة IP (٪)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "الحزم لكل توزيع التدفق (٪)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "الثمانيات لكل توزيع التدفق (٪)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "توزيع وقت التدفق (٪)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "يجب عليك تحديد تقرير إحصائي أو تقرير مطبوع!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "يجب عليك فقط تحديد تقرير إحصائي أو تقرير مطبوع (وليس كلاهما)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "تواريخ غير صالحة ، تاريخ / وقت الانتهاء أقدم من تاريخ / وقت البدء!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "عنوان IP غير صالح لعنوان المصدر!
(يجب أن يكون في شكل \"192.168.0.1\")" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "شبكة فرعية غير صالحة لعنوان المصدر!
(يجب أن يكون في شكل \"192.168.0.1/255.255.255.0\" أو \"192.168.0.1/24\")" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "عنوان IP غير صالح لعنوان الوجهة!
(يجب أن يكون في شكل \"192.168.0.1\")" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "شبكة فرعية غير صالحة لعنوان الوجهة!
(يجب أن يكون في شكل \"192.168.0.1/255.255.255.0\" أو \"192.168.0.1/24\")" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "قيمة غير صالحة للواجهة المصدر!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "قيمة غير صالحة لمصدر المصدر! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "قيمة غير صالحة للمصدر AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "قيمة غير صالحة لواجهة الوجهة!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "قيمة غير صالحة لمنفذ الوجهة (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "قيمة غير صالحة لـ Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "قيمة غير صالحة للبروتوكول! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "قيمة غير صالحة لعلم TCP! (على سبيل المثال: 0x1b أو 0x1b / SA أو SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "قيمة غير صالحة لثمانية قطع!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "قيمة غير صالحة لخطوط القطع!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "قيمة غير صالحة لـ Sort Field!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "مخطط FlowView لـ٪ s النوع هو٪ s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "ماكس التدفقات:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "شريط الحزم" @@ -1423,721 +1447,733 @@ msgstr "البرنامج المساعد -> تدفق عارض" msgid "Plugin -> Flow Admin" msgstr "البرنامج المساعد -> إدارة التدفق" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "تم حذف المرشح" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "تم تحديث الفلتر" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "عارض التدفق" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "عرض" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "حفظ" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(تعديل)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "أفعال" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "٪ د الأسبوع" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "٪ د أسابيع" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "٪ د الشهر" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "٪ د أشهر" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "٪ د السنة" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "متفرقات" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "قائمة محددة بفواصل لأسماء النطاقات التي سيتم تجريدها من المجال." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "أسماء المجال قطاع" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "هذا هو خادم DNS المستخدم لحل الأسماء." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "خادم DNS البديل" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "لا تحل DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "استخدام خادم DNS أدناه" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "استخدام خادم محلي" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "الطريقة التي ترغب في حل أسماء المضيفين بها." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "هذا هو المسار لتأسيس مسار بنية مجلد التدفق." +#~ msgid "EGP" +#~ msgstr "جنيه" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "دليل التدفقات" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "هذا هو المسار إلى دليل مؤقت للقيام بالعمل." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "أدوات العمل دليل التدفق" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "المسار إلى تدفق القط ، ومرشح التدفق ، وثنائي تدفق التدفق." +#~ msgid "PUP" +#~ msgstr "حزب الوحدة الشعبية" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "أدوات التدفق المسار الثنائي" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "إدارة المستمعين" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "لا يوجد أجهزة" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "تنقضي" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "ضغط" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "الإصدار" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "كم من الوقت للحفاظ على تدفق الملفات الخاصة بك." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "تاريخ الانتهاء" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "عدد مرات إنشاء ملف التدفق الجديد." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "دوران" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "مستوى ضغط ملفات التدفق. ضغط أعلى يوفر مساحة ولكنه يستخدم المزيد من وحدة المعالجة المركزية لتخزين واسترجاع النتائج." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "مستوى الضغط" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "إصدار بروتوكول NetFlow المستخدم من قبل الجهاز." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "نسخة NetFlow" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "بنية الدليل التي سيتم استخدامها للتدفقات لهذا الجهاز." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "التعشيش" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "دليل تدفق هذه الأجهزة. يجب أن يكون هذا الدليل في مسار دليل التدفق. لا تضع المسار الكامل هنا. وأيضًا ، إذا لم تقم بتغيير المسار ، فسيتم إعادة حفظ جميع إعدادات إعداد الملفات المحددة مسبقًا لاستخدامه." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "الدليل" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (الأعلى)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (معطل)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "أدوات التدفق الموسومة الإصدار 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "تجميع منفذ بادئة NetFlow" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "تجميع NetFlow للبادئة" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "تجميع بادئة NetFlow لـ ToS" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS تجميع بادئة المصدر" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Proto Port Aggregation" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS التجميع" +#~ msgid "IL" +#~ msgstr "انا" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow التدفق الكامل" +#~ msgid "IPv6" +#~ msgstr "الإصدار IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "مصدر NetFlow الوجهة" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "نيتفلو الوجهة" +#~ msgid "IPv6-Route" +#~ msgstr "الإصدار IPv6-الطريق" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "تجميع بادئة NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "الإصدار IPv6-فرج" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "تجميع بادئة NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "تجميع بادئة مصدر NetFlow" +#~ msgid "RSVP" +#~ msgstr "من فضلك، أرسل رد" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "تجميع NetFlow Proto Port" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "تجميع NetFlow" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow الإصدار 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow الإصدار 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "الإصدار IPv6، ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "الإصدار 5 من NetFlow" +#~ msgid "IPv6-NoNxt" +#~ msgstr "الإصدار IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "الإصدار 1 من NetFlow" +#~ msgid "IPv6-Opts" +#~ msgstr "الإصدار IPv6، الأراضي الفلسطينية المحتلة" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "٪ د دقائق" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "٪ د دقيقة" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "٪ أيام" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "تشمل إذا:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "معلمات التقرير" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "ملحوظة:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "ميناء (ق)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(على سبيل المثال ، -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "قيود مرشح التدفق" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "اختيار واحد" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "تماما في فترة زمنية محددة" +#~ msgid "Src Prefix" +#~ msgstr "بادئة Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "وقت البدء في فترة زمنية محددة" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "وقت الانتهاء في فترة زمنية محددة" +#~ msgid "Src Port" +#~ msgstr "Src بورت" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "أي جزء في فترة زمنية محددة" +#~ msgid "End Date" +#~ msgstr "تاريخ النهاية" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "كامل (محفز)" +#~ msgid "Filter Type" +#~ msgstr "اسم المرشح" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "تجميع البادئة" +#~ msgid "View" +#~ msgstr "عرض" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "تجميع بادئة الوجهة" +#~ msgid "Defaults" +#~ msgstr "التخلف" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "تجميع بادئة المصدر" +#~ msgid "Save As" +#~ msgstr "حفظ باسم" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "بروتوكول ميناء التجميع" +#~ msgid "Filter Data" +#~ msgstr "اسم المرشح" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "كما التجميع" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "يُسمح بإدخال حقول متعددة ، مفصولة بفواصل ، في الحقول أعلاه. علامة الطرح (-) ستنفي إدخالًا (على سبيل المثال -80 لـ Port ، يعني أي منفذ إلا 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 خط مع العلامات" +#~ msgid "New Query" +#~ msgstr "استعلام جديد" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "اختصار" +#~ msgid "Update" +#~ msgstr "تحديث" #, fuzzy -#~ msgid "AS" -#~ msgstr "مثل" +#~ msgid "Filter Saved" +#~ msgstr "تم حفظ الفلتر" #, fuzzy -#~ msgid "Interface" -#~ msgstr "جهة تعامل" +#~ msgid "Filter Settings Saved" +#~ msgstr "تصفية الإعدادات المحفوظة" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "تم تحديث الفلتر" #, fuzzy #~ msgid "IP" #~ msgstr "الآيبي" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "تم تحديث الفلتر" +#~ msgid "Interface" +#~ msgstr "جهة تعامل" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "تصفية الإعدادات المحفوظة" +#~ msgid "AS" +#~ msgstr "مثل" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "تم حفظ الفلتر" +#~ msgid "Prefix" +#~ msgstr "اختصار" #, fuzzy -#~ msgid "Update" -#~ msgstr "تحديث" +#~ msgid "1 Line with Tags" +#~ msgstr "1 خط مع العلامات" #, fuzzy -#~ msgid "New Query" -#~ msgstr "استعلام جديد" +#~ msgid "AS Aggregation" +#~ msgstr "كما التجميع" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "يُسمح بإدخال حقول متعددة ، مفصولة بفواصل ، في الحقول أعلاه. علامة الطرح (-) ستنفي إدخالًا (على سبيل المثال -80 لـ Port ، يعني أي منفذ إلا 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "بروتوكول ميناء التجميع" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "اسم المرشح" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "تجميع بادئة المصدر" #, fuzzy -#~ msgid "Save As" -#~ msgstr "حفظ باسم" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "تجميع بادئة الوجهة" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "التخلف" +#~ msgid "Prefix Aggregation" +#~ msgstr "تجميع البادئة" #, fuzzy -#~ msgid "View" -#~ msgstr "عرض" +#~ msgid "Full (Catalyst)" +#~ msgstr "كامل (محفز)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "اسم المرشح" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "أي جزء في فترة زمنية محددة" #, fuzzy -#~ msgid "End Date" -#~ msgstr "تاريخ النهاية" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "وقت الانتهاء في فترة زمنية محددة" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src بورت" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "وقت البدء في فترة زمنية محددة" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "تماما في فترة زمنية محددة" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "بادئة Src" +#~ msgid "Select One" +#~ msgstr "اختيار واحد" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "قيود مرشح التدفق" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(على سبيل المثال ، -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "ميناء (ق)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "ملحوظة:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "معلمات التقرير" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "تشمل إذا:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "٪ أيام" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "٪ د دقيقة" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "٪ د دقائق" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "الإصدار 1 من NetFlow" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "الإصدار IPv6، الأراضي الفلسطينية المحتلة" +#~ msgid "NetFlow version 5" +#~ msgstr "الإصدار 5 من NetFlow" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "الإصدار IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow الإصدار 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "الإصدار IPv6، ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow الإصدار 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "تجميع NetFlow" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "تجميع NetFlow Proto Port" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "تجميع بادئة مصدر NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "تجميع بادئة NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "من فضلك، أرسل رد" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "تجميع بادئة NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "نيتفلو الوجهة" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "الإصدار IPv6-فرج" +#~ msgid "NetFlow Source Destination" +#~ msgstr "مصدر NetFlow الوجهة" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "الإصدار IPv6-الطريق" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow التدفق الكامل" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS التجميع" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "الإصدار IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Proto Port Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "انا" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS تجميع بادئة المصدر" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "تجميع بادئة NetFlow لـ ToS" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "تجميع NetFlow للبادئة" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "تجميع منفذ بادئة NetFlow" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "أدوات التدفق الموسومة الإصدار 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (معطل)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (الأعلى)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "الدليل" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "دليل تدفق هذه الأجهزة. يجب أن يكون هذا الدليل في مسار دليل التدفق. لا تضع المسار الكامل هنا. وأيضًا ، إذا لم تقم بتغيير المسار ، فسيتم إعادة حفظ جميع إعدادات إعداد الملفات المحددة مسبقًا لاستخدامه." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "التعشيش" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "بنية الدليل التي سيتم استخدامها للتدفقات لهذا الجهاز." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "نسخة NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "إصدار بروتوكول NetFlow المستخدم من قبل الجهاز." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "مستوى الضغط" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "مستوى ضغط ملفات التدفق. ضغط أعلى يوفر مساحة ولكنه يستخدم المزيد من وحدة المعالجة المركزية لتخزين واسترجاع النتائج." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "دوران" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "عدد مرات إنشاء ملف التدفق الجديد." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "تاريخ الانتهاء" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "كم من الوقت للحفاظ على تدفق الملفات الخاصة بك." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "الإصدار" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "ضغط" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "تنقضي" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "لا يوجد أجهزة" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "إدارة المستمعين" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "أدوات التدفق المسار الثنائي" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "المسار إلى تدفق القط ، ومرشح التدفق ، وثنائي تدفق التدفق." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "أدوات العمل دليل التدفق" #, fuzzy -#~ msgid "PUP" -#~ msgstr "حزب الوحدة الشعبية" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "هذا هو المسار إلى دليل مؤقت للقيام بالعمل." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "دليل التدفقات" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "هذا هو المسار لتأسيس مسار بنية مجلد التدفق." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "الطريقة التي ترغب في حل أسماء المضيفين بها." #, fuzzy -#~ msgid "EGP" -#~ msgstr "جنيه" +#~ msgid "Use Local Server" +#~ msgstr "استخدام خادم محلي" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "استخدام خادم DNS أدناه" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "لا تحل DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "خادم DNS البديل" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "هذا هو خادم DNS المستخدم لحل الأسماء." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "أسماء المجال قطاع" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "قائمة محددة بفواصل لأسماء النطاقات التي سيتم تجريدها من المجال." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "تدفق جديد" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "تقارير الطباعة" diff --git a/locales/po/bg-BG.po b/locales/po/bg-BG.po index 193ce9f..d16c5c3 100644 --- a/locales/po/bg-BG.po +++ b/locales/po/bg-BG.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 19:54-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP изходен порт" msgid "UDP/TCP Port" msgstr "UDP / TCP порт" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Източник IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Целеви IP адрес" @@ -98,13 +98,13 @@ msgstr "Изходен интерфейс" msgid "Input/Output Interface" msgstr "Входно / изходен интерфейс" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Скриптът/източникът използван за събиране на данни за този източник на данни." -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Дестинация AS" @@ -119,7 +119,7 @@ msgstr "Източник / местоназначение AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Префикс на източника" @@ -193,7 +193,7 @@ msgstr "Няма ограничение" msgid "%s Bytes" msgstr "%s байта" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Всички" @@ -207,7 +207,7 @@ msgstr "Порт (и) на източника" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "потоци" @@ -216,8 +216,8 @@ msgstr "потоци" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Пакети" @@ -243,18 +243,18 @@ msgstr "Целеви IP адрес" msgid "Port" msgstr "Порт" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Целеви IP адрес" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Имейл адреси" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Протокол" @@ -279,290 +279,295 @@ msgstr "Усложия за ползуване" msgid "Destingation Prefix" msgstr "Целеви префикс" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "БТА" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Източник IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Целеви IP адрес" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Порт (и) на източника" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Целеви IP адрес" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Начален час" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Краен час" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Активен" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "Б / Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ц." -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Знамена" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Източник IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Целеви IP адрес" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Изчистване на филтрите" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Филтър" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Филтър" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Слушател" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "пресети" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Доклад: [нов]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Отпечатано:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Статистика" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Статистически доклади" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Отпечатване на отчети" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Управление на графиците" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Разрешаване на адреси:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Разрешаване на адреси:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Да" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Не" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Сортиране на полето:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Минимални байтове:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "протоколи" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "протоколи" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP знамена" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Полета на TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Порт (и) на източника" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Изходен интерфейс" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Пристанищен порт" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Интерфейс за достъп" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Устройство [ново]" msgid "FlowView Listeners" msgstr "Слушатели на FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Търсене" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Търси" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Задаване / опресняване на филтрите" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Изчисти" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Изчистване на филтрите" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Слушатели" @@ -750,34 +755,38 @@ msgstr "Кликнете върху „Напред“, за да активир msgid "You must select at least one Filter." msgstr "Трябва да изберете поне едно устройство." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Поточни филтри" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Филтри" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "По подразбиране" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Име на филтъра" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Резолюция на име на хост" @@ -828,7 +837,7 @@ msgstr "Нов график" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Въведете заглавие на отчета за графика на потока." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Разрешен" @@ -903,18 +912,22 @@ msgstr "Отчет: [редактиране: %s]" msgid "Report: [new]" msgstr "Доклад: [нов]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Стартирайте Селектора за дата" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Разписания за FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Списъци" @@ -924,22 +937,22 @@ msgstr "Списъци" msgid "Schedule Title" msgstr "Заглавие на графика" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Интервал" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Начална Дата" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Следваща Изпращане" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Имейл" @@ -959,25 +972,20 @@ msgstr "Отчет: [редактиране: %s]" msgid "Filter: [new]" msgstr "Доклад: [нов]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Отпечатване на отчети" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Отпечатване на отчети" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Персонализиране" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Селектор за крайна дата" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Покажи скрий" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Таблица" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Бар за байтове" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Пакет бар" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Бар за потоци" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "알려지지 않음" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netflow -%" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Нов поток" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s байта" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s байта" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Скриптът/източникът използван за събиране на данни за този източник на данни." -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Скриптът/източникът използван за събиране на данни за този източник на данни." -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Пристанищен порт" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Пристанищен порт" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Преден префикс" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Пакети" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Обобщена статистика" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Разпределение на размера на пакета за IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Разпределение на пакети за потока (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Октети за разпределение на потока (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Разпределение на времето на потока (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Трябва да изберете статистически отчет или отпечатан отчет!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Трябва да изберете само статистически отчет или отпечатан отчет (не и двете)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Невалидни дати, Крайна дата / час е по-ранна от началната дата / час!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Невалиден IP адрес за източника!
(Трябва да е под формата на „192.168.0.1“)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Невалидна подмрежа за изходния адрес!
(Трябва да е под формата на „192.168.0.1/255.255.255.0“ или „192.168.0.1/24“)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Невалиден IP адрес за целевия адрес!
(Трябва да е под формата на „192.168.0.1“)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Невалидна подмрежа за целевия адрес!
(Трябва да е под формата на „192.168.0.1/255.255.255.0“ или „192.168.0.1/24“)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Невалидна стойност за изходния интерфейс!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Невалидна стойност за изходния порт! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Невалидна стойност за Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Невалидна стойност за целевия интерфейс!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Невалидна стойност за целевия порт! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Невалидна стойност за Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Невалидна стойност за протокол! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Невалидна стойност за TCP флаг! (напр .: 0x1b или 0x1b / SA или SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Невалидна стойност за Octoff Octoff!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Невалидна стойност за Линиите за изключване!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Невалидна стойност за полето за сортиране!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Диаграма за преглеждане на потока за %s Тип е %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Максимални потоци:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Пакет бар" @@ -1423,721 +1447,733 @@ msgstr "Приставката -> Преглед на потока" msgid "Plugin -> Flow Admin" msgstr "Плъгин -> Администратор на поток" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Филтърът е изтрит" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Филтърът е актуализиран" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Преглед на потока" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Преглед" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Запази" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Редактирай)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Действия" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d Седмица" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d седмици" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d Месец" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% d Месеци" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d Година" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Разни" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Списък с имена на домейни, разделени със запетая, за премахване от домейна." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Изолирайте домейн имената" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Това е DNS сървърът, използван за разрешаване на имена." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Алтернативен DNS сървър" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Не разрешавайте DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Използвайте DNS сървър по-долу" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Използвайте локален сървър" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Методът, чрез който искате да разрешите имената на хостове." +#~ msgid "CBT" +#~ msgstr "Пенис" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Това е пътят към базата на пътя на структурата на поточната ви папка." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Директория на потоците" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Това е пътят към временна директория за работа." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Работна директория за поточни инструменти" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Пътят към вашата поточна котка, филтър за потока и двоичен поток." +#~ msgid "PUP" +#~ msgstr "ПУП" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Двоичен път на инструментите за поток" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Управление на слушателите" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Устройства" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Изтича" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "компресия" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Версия" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Колко дълго трябва да поддържате поточните си файлове." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Краен срок" +#~ msgid "PRM" +#~ msgstr "Лица с намалена подвижност" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Колко често да се създава нов поточен файл." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Завъртане" +#~ msgid "TRUNK-1" +#~ msgstr "Багажника-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Ниво на компресиране на поточни файлове. По-високата компресия спестява място, но използва повече CPU за съхраняване и извличане на резултати." +#~ msgid "TRUNK-2" +#~ msgstr "Багажника-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Ниво на компресия" +#~ msgid "LEAF-1" +#~ msgstr "КРИЛОТО-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Версия NetFlow протокол, използвана от устройството." +#~ msgid "LEAF-2" +#~ msgstr "КРИЛОТО-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow версия" +#~ msgid "RDP" +#~ msgstr "ПРСР" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Структура на указателя, която ще се използва за потоците за това устройство." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Разполагане" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Директорията, в която текат тези устройства. Тази директория трябва да бъде в пътя на директорията на потока. Не поставяйте пълния път тук. Също така, не че ако промените пътя, всички предварително дефинирани настройки на филтъра, за да го използвате, ще трябва да бъдат презаписани." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Папка" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-НСП" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (най-висока)" +#~ msgid "MERIT-INP" +#~ msgstr "Заслугите INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (забранено)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Инструменти за потоци, маркирани версия 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Агрегиране на пристанището на NetFlow ToS" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Агрегиране на префикс на NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "Агрегиране на префикс на целеви префикс на NetFlow" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Агрегиране на NetFlow ToS Source Prefix Aggregation" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Proto Port Aggregation" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "Агрегиране на NetFlow ToS AS" +#~ msgid "IL" +#~ msgstr "I Л" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Целева цел на NetFlow" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Дестинация на NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Route" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Агрегиране на префикс на NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Агрегиране на префикс за дестинация на NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Агрегиране на префикс на източника на NetFlow" +#~ msgid "RSVP" +#~ msgstr "Регистрация" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow Proto Port Aggregation" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Агрегиране на NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow версия 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow версия 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow версия 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow версия 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-избира" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "% d Минути" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d Минута" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "% d дни" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Включете, ако:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Параметри на отчета" +#~ msgid "MTP" +#~ msgstr "МТР" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Бележка:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Порт (и) за търсене" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(напр. -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Ограничения на филтъра на потока" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / IP адрес" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Избери един" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Изцяло в определен период от време" +#~ msgid "Src Prefix" +#~ msgstr "Src Prefix" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Начално време в определен период от време" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Крайно време в определен период от време" +#~ msgid "Src Port" +#~ msgstr "Порт Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Всяка част в определен период от време" +#~ msgid "End Date" +#~ msgstr "Крайна дата" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Пълно (катализатор)" +#~ msgid "Filter Type" +#~ msgstr "Име на филтъра" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Агрегация на префикса" +#~ msgid "View" +#~ msgstr "Преглед" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Агрегация на целевия префикс" +#~ msgid "Defaults" +#~ msgstr "По подразбиране" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Агрегиране на префикс на източника" +#~ msgid "Save As" +#~ msgstr "Запис като" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Протокол Агрегиране на портове" +#~ msgid "Filter Data" +#~ msgstr "Име на филтъра" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS Aggregation" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "В полетата по-горе са разрешени няколко полета, разделени със запетаи. Знакът минус (-) ще отхвърли запис (напр. -80 за пристанище, означава всеки порт, но 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 ред с маркери" +#~ msgid "New Query" +#~ msgstr "Нова заявка" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Префикс" +#~ msgid "Update" +#~ msgstr "Обновяване" #, fuzzy -#~ msgid "AS" -#~ msgstr "КАТО" +#~ msgid "Filter Saved" +#~ msgstr "Филтърът е запазен" #, fuzzy -#~ msgid "Interface" -#~ msgstr "интерфейс" +#~ msgid "Filter Settings Saved" +#~ msgstr "Настройките на филтъра са запазени" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Филтърът е актуализиран" #, fuzzy #~ msgid "IP" #~ msgstr "IP адрес" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Филтърът е актуализиран" +#~ msgid "Interface" +#~ msgstr "интерфейс" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Настройките на филтъра са запазени" +#~ msgid "AS" +#~ msgstr "КАТО" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Филтърът е запазен" +#~ msgid "Prefix" +#~ msgstr "Префикс" #, fuzzy -#~ msgid "Update" -#~ msgstr "Обновяване" +#~ msgid "1 Line with Tags" +#~ msgstr "1 ред с маркери" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Нова заявка" +#~ msgid "AS Aggregation" +#~ msgstr "AS Aggregation" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "В полетата по-горе са разрешени няколко полета, разделени със запетаи. Знакът минус (-) ще отхвърли запис (напр. -80 за пристанище, означава всеки порт, но 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Протокол Агрегиране на портове" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Име на филтъра" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Агрегиране на префикс на източника" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Запис като" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Агрегация на целевия префикс" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "По подразбиране" +#~ msgid "Prefix Aggregation" +#~ msgstr "Агрегация на префикса" #, fuzzy -#~ msgid "View" -#~ msgstr "Преглед" +#~ msgid "Full (Catalyst)" +#~ msgstr "Пълно (катализатор)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Име на филтъра" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Всяка част в определен период от време" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Крайна дата" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Крайно време в определен период от време" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Порт Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Начално време в определен период от време" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Изцяло в определен период от време" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src Prefix" +#~ msgid "Select One" +#~ msgstr "Избери един" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Ограничения на филтъра на потока" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / IP адрес" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(напр. -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Порт (и) за търсене" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Бележка:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Параметри на отчета" #, fuzzy -#~ msgid "MTP" -#~ msgstr "МТР" +#~ msgid "Include if:" +#~ msgstr "Включете, ако:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "% d дни" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d Минута" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "% d Минути" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow версия 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-избира" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow версия 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow версия 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow версия 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Агрегиране на NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow Proto Port Aggregation" #, fuzzy -#~ msgid "BNA" -#~ msgstr "БТА" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Агрегиране на префикс на източника на NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Агрегиране на префикс за дестинация на NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Регистрация" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Агрегиране на префикс на NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Дестинация на NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Целева цел на NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "Агрегиране на NetFlow ToS AS" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Proto Port Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "I Л" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Агрегиране на NetFlow ToS Source Prefix Aggregation" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "Агрегиране на префикс на целеви префикс на NetFlow" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Агрегиране на префикс на NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Агрегиране на пристанището на NetFlow ToS" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Инструменти за потоци, маркирани версия 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (забранено)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (най-висока)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Папка" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "Заслугите INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Директорията, в която текат тези устройства. Тази директория трябва да бъде в пътя на директорията на потока. Не поставяйте пълния път тук. Също така, не че ако промените пътя, всички предварително дефинирани настройки на филтъра, за да го използвате, ще трябва да бъдат презаписани." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-НСП" +#~ msgid "Nesting" +#~ msgstr "Разполагане" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Структура на указателя, която ще се използва за потоците за това устройство." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow версия" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Версия NetFlow протокол, използвана от устройството." #, fuzzy -#~ msgid "RDP" -#~ msgstr "ПРСР" +#~ msgid "Compression Level" +#~ msgstr "Ниво на компресия" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "КРИЛОТО-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Ниво на компресиране на поточни файлове. По-високата компресия спестява място, но използва повече CPU за съхраняване и извличане на резултати." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "КРИЛОТО-1" +#~ msgid "Rotation" +#~ msgstr "Завъртане" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "Багажника-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Колко често да се създава нов поточен файл." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "Багажника-1" +#~ msgid "Expiration" +#~ msgstr "Краен срок" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Колко дълго трябва да поддържате поточните си файлове." #, fuzzy -#~ msgid "PRM" -#~ msgstr "Лица с намалена подвижност" +#~ msgid "Version" +#~ msgstr "Версия" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "компресия" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Изтича" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Устройства" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Управление на слушателите" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Двоичен път на инструментите за поток" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Пътят към вашата поточна котка, филтър за потока и двоичен поток." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Работна директория за поточни инструменти" #, fuzzy -#~ msgid "PUP" -#~ msgstr "ПУП" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Това е пътят към временна директория за работа." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Директория на потоците" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Това е пътят към базата на пътя на структурата на поточната ви папка." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Методът, чрез който искате да разрешите имената на хостове." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Използвайте локален сървър" #, fuzzy -#~ msgid "CBT" -#~ msgstr "Пенис" +#~ msgid "Use DNS Server Below" +#~ msgstr "Използвайте DNS сървър по-долу" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Не разрешавайте DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Алтернативен DNS сървър" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Това е DNS сървърът, използван за разрешаване на имена." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Изолирайте домейн имената" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Списък с имена на домейни, разделени със запетая, за премахване от домейна." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Нов поток" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Отпечатване на отчети" diff --git a/locales/po/cacti.pot b/locales/po/cacti.pot index 7b61fe2..4a332d3 100644 --- a/locales/po/cacti.pot +++ b/locales/po/cacti.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Cacti \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,12 +49,12 @@ msgstr "" msgid "UDP/TCP Port" msgstr "" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 msgid "Source IP" msgstr "" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 msgid "Destination IP" msgstr "" @@ -82,12 +82,12 @@ msgstr "" msgid "Input/Output Interface" msgstr "" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 msgid "Source AS" msgstr "" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 msgid "Destination AS" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "IP ToS" msgstr "" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 msgid "Source Prefix" msgstr "" @@ -164,7 +164,7 @@ msgstr "" msgid "%s Bytes" msgstr "" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 msgid "All" msgstr "" @@ -176,7 +176,7 @@ msgstr "" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 msgid "Flows" msgstr "" @@ -184,8 +184,8 @@ msgstr "" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 msgid "Bytes" msgstr "" @@ -193,8 +193,8 @@ msgstr "" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 msgid "Packets" msgstr "" @@ -207,16 +207,16 @@ msgstr "" msgid "Port" msgstr "" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 msgid "Dest IP" msgstr "" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 msgid "IP Address" msgstr "" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 msgid "Protocol" msgstr "" @@ -236,251 +236,255 @@ msgstr "" msgid "Destingation Prefix" msgstr "" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +msgid "N/A" +msgstr "" + +#: arrays.php:307 arrays.php:335 functions.php:2103 msgid "Source IF" msgstr "" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 msgid "Destination IF" msgstr "" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 msgid "Source Port" msgstr "" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 msgid "Destination Port" msgstr "" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 msgid "Start Time" msgstr "" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 msgid "End Time" msgstr "" -#: arrays.php:315 +#: arrays.php:318 msgid "Active" msgstr "" -#: arrays.php:316 +#: arrays.php:319 msgid "B/Pk" msgstr "" -#: arrays.php:317 +#: arrays.php:320 msgid "Ts" msgstr "" -#: arrays.php:318 +#: arrays.php:321 msgid "Fl" msgstr "" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 msgid "Flags" msgstr "" -#: arrays.php:344 +#: arrays.php:347 msgid "Source" msgstr "" -#: arrays.php:345 +#: arrays.php:348 msgid "Destination" msgstr "" -#: arrays.php:362 +#: arrays.php:365 msgid "General Filters" msgstr "" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 msgid "Filter" msgstr "" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 msgid "New Filter" msgstr "" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 msgid "Listener" msgstr "" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 msgid "Presets" msgstr "" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 msgid "Report Type" msgstr "" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 msgid "Printed" msgstr "" -#: arrays.php:400 +#: arrays.php:403 msgid "Statistical" msgstr "" -#: arrays.php:404 +#: arrays.php:407 msgid "Statistical Report" msgstr "" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 msgid "Printed Report" msgstr "" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 msgid "Range Rules" msgstr "" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 msgid "Resolve IP's" msgstr "" -#: arrays.php:429 +#: arrays.php:432 msgid "Resolve IP Addresses to Domain Names." msgstr "" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 msgid "Yes" msgstr "" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 msgid "No" msgstr "" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 msgid "Sort Field" msgstr "" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 msgid "Minimum Bytes" msgstr "" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 msgid "Protocol Filters" msgstr "" -#: arrays.php:468 +#: arrays.php:471 msgid "Protocols" msgstr "" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 msgid "TCP Flags" msgstr "" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 msgid "TOS Fields" msgstr "" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 msgid "Source Ports" msgstr "" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 msgid "Source Interface" msgstr "" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 msgid "Dest Ports" msgstr "" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 msgid "Dest Interface" msgstr "" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 msgid "Dest AS" msgstr "" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -549,29 +553,29 @@ msgstr "" msgid "FlowView Listeners" msgstr "" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 msgid "Search" msgstr "" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 msgid "Go" msgstr "" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 msgid "Set/Refresh Filters" msgstr "" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 msgid "Clear" msgstr "" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 msgid "Clear Filters" msgstr "" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 msgid "Listeners" msgstr "" @@ -639,29 +643,33 @@ msgstr "" msgid "You must select at least one Filter." msgstr "" -#: flowview_filters.php:215 +#: flowview_filters.php:218 msgid "FlowView Filters" msgstr "" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 msgid "Filters" msgstr "" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 msgid "Default" msgstr "" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 msgid "Filter Name" msgstr "" -#: flowview_filters.php:335 +#: flowview_filters.php:334 msgid "ID" msgstr "" -#: flowview_filters.php:345 +#: flowview_filters.php:344 msgid "Resolution" msgstr "" @@ -704,7 +712,7 @@ msgstr "" msgid "Enter a Report Title for the FlowView Schedule." msgstr "" -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 msgid "Enabled" msgstr "" @@ -765,16 +773,20 @@ msgstr "" msgid "Report: [new]" msgstr "" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 msgid "Start Date Selector" msgstr "" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 msgid "FlowView Schedules" msgstr "" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 msgid "Schedules" msgstr "" @@ -782,19 +794,19 @@ msgstr "" msgid "Schedule Title" msgstr "" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 msgid "Interval" msgstr "" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 msgid "Start Date" msgstr "" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 msgid "Next Send" msgstr "" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 msgid "Email" msgstr "" @@ -811,24 +823,20 @@ msgstr "" msgid "Filter: [new]" msgstr "" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -msgid "Select a Filter to display data" -msgstr "" - #: functions.php:393 msgid "Select a Filter" msgstr "" @@ -915,299 +923,317 @@ msgstr "" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 msgid "Custom" msgstr "" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 msgid "End Date Selector" msgstr "" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 msgid "Show/Hide" msgstr "" -#: functions.php:598 +#: functions.php:602 msgid "Table" msgstr "" -#: functions.php:602 +#: functions.php:606 msgid "Bytes Bar" msgstr "" -#: functions.php:606 +#: functions.php:610 msgid "Packets Bar" msgstr "" -#: functions.php:610 +#: functions.php:614 msgid "Flows Bar" msgstr "" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, php-format msgid "Unknown (%s)" msgstr "" -#: functions.php:1121 +#: functions.php:1170 msgid "Cacti Flowview" msgstr "" -#: functions.php:1129 -msgid "Netflow - %" +#: functions.php:1176 +#, php-format +msgid "Netflow - %s" msgstr "" -#: functions.php:1238 -msgid "New Flow" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" msgstr "" -#: functions.php:1888 +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, php-format +msgid "%d - %d Bytes" +msgstr "" + +#: functions.php:1714 +#, php-format +msgid "> %d Bytes" +msgstr "" + +#: functions.php:2059 msgid "Source DNS" msgstr "" -#: functions.php:1892 +#: functions.php:2063 msgid "Source Root DNS" msgstr "" -#: functions.php:1896 +#: functions.php:2067 msgid "Dest DNS" msgstr "" -#: functions.php:1900 +#: functions.php:2071 msgid "Dest Root DNS" msgstr "" -#: functions.php:1904 +#: functions.php:2075 msgid "DNS" msgstr "" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 msgid "Dest Port" msgstr "" -#: functions.php:1936 +#: functions.php:2107 msgid "Dest IF" msgstr "" -#: functions.php:1952 +#: functions.php:2123 msgid "Dest Prefix" msgstr "" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 msgid "Bytes/Packet" msgstr "" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 msgid "Summary Statistics" msgstr "" -#: functions.php:2291 +#: functions.php:2517 #, php-format msgid "IP Packet Size Distribution (%%)" msgstr "" -#: functions.php:2296 +#: functions.php:2522 #, php-format msgid "Packets per Flow Distribution (%%)" msgstr "" -#: functions.php:2301 +#: functions.php:2527 #, php-format msgid "Octets per Flow Distribution (%%)" msgstr "" -#: functions.php:2306 +#: functions.php:2532 #, php-format msgid "Flow Time Distribution (%%)" msgstr "" -#: functions.php:2489 +#: functions.php:2715 msgid "You must select a Statistics Report or Printed Report!" msgstr "" -#: functions.php:2493 +#: functions.php:2719 msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "" -#: functions.php:2497 +#: functions.php:2723 msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "" -#: functions.php:2578 +#: functions.php:2804 msgid "Invalid value for Source Interface!" msgstr "" -#: functions.php:2594 +#: functions.php:2820 msgid "Invalid value for Source Port! (0 - 65535)" msgstr "" -#: functions.php:2610 +#: functions.php:2836 msgid "Invalid value for Source AS! (0 - 65535)" msgstr "" -#: functions.php:2626 +#: functions.php:2852 msgid "Invalid value for Destination Interface!" msgstr "" -#: functions.php:2642 +#: functions.php:2868 msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "" -#: functions.php:2658 +#: functions.php:2884 msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "" -#: functions.php:2674 +#: functions.php:2900 msgid "Invalid value for Protocol! (1 - 255)" msgstr "" -#: functions.php:2686 +#: functions.php:2912 msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "" -#: functions.php:2695 +#: functions.php:2921 msgid "Invalid value for Cutoff Octets!" msgstr "" -#: functions.php:2702 +#: functions.php:2928 msgid "Invalid value for Cutoff Lines!" msgstr "" -#: functions.php:2709 +#: functions.php:2935 msgid "Invalid value for Sort Field!" msgstr "" -#: functions.php:2736 +#: functions.php:2962 #, php-format msgid "FlowView Chart for %s Type is %s" msgstr "" -#: functions.php:3039 +#: functions.php:3257 msgid "Total Flows" msgstr "" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 msgid "Packets Examined" msgstr "" @@ -1219,92 +1245,100 @@ msgstr "" msgid "Plugin -> Flow Admin" msgstr "" -#: setup.php:137 +#: setup.php:141 msgid "The Filter has been Deleted" msgstr "" -#: setup.php:138 +#: setup.php:142 msgid "The Filter has been Updated" msgstr "" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 msgid "FlowView" msgstr "" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 msgid "Flow Viewer" msgstr "" -#: setup.php:165 +#: setup.php:174 msgid "(view)" msgstr "" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 msgid "(save)" msgstr "" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 msgid "(edit)" msgstr "" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 msgid "(actions)" msgstr "" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, php-format msgid "%d Week" msgstr "" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, php-format msgid "%d Weeks" msgstr "" -#: setup.php:312 +#: setup.php:321 #, php-format msgid "%d Month" msgstr "" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, php-format msgid "%d Months" msgstr "" -#: setup.php:317 +#: setup.php:326 #, php-format msgid "%d Year" msgstr "" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 msgid "Misc" msgstr "" diff --git a/locales/po/de-DE.po b/locales/po/de-DE.po index b6802c5..bb649fb 100644 --- a/locales/po/de-DE.po +++ b/locales/po/de-DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 19:56-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP/TCP Quellport" msgid "UDP/TCP Port" msgstr "UDP/TCP-Port" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Quell-IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Ziel-IP" @@ -98,13 +98,13 @@ msgstr "Ausgabeschnittstelle" msgid "Input/Output Interface" msgstr "Ein-/Ausgangsschnittstelle" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Das Skript/der Ursprung der Daten für die Datenquelle sammelt" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Ziel für Log" @@ -119,7 +119,7 @@ msgstr "Quelle/Ziel AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Prefix für die Quelle" @@ -193,7 +193,7 @@ msgstr "Keine Begrenzung" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Alle" @@ -207,7 +207,7 @@ msgstr "Quell-Port(s)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Ströme" @@ -216,8 +216,8 @@ msgstr "Ströme" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Durchschnittliche Bytes pro Datensatz:" @@ -226,8 +226,8 @@ msgstr "Durchschnittliche Bytes pro Datensatz:" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Pakete" @@ -243,18 +243,18 @@ msgstr "Ziel-IP" msgid "Port" msgstr "Port" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Ziel-IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "E-Mail-Adressen" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "SNMP Authentifizierungsprotokoll (v3)" @@ -279,290 +279,295 @@ msgstr "AGB" msgid "Destingation Prefix" msgstr "Ziel-Präfix" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Quell-IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Ziel-IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Quell-Port(s)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Ziel-IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Letzte Startzeit:" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Endzeit" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Aktiv" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Markierungen" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Quell-IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Ziel-IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Filter löschen" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filter" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filter" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Zuhörer" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Voreinstellungen" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Bericht: [neu]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Gedruckt:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Statistiken" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Statistikberichte" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Berichte drucken" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Zeitpläne verwalten" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Adressen auflösen:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Adressen auflösen:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Ja" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Nein" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Sortierfeld:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Minimale Bytes:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protokolle" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protokolle" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP-Flags" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOS-Felder" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Quell-Port(s)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Quellschnittstelle" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Ziel-Port" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Ziel-Schnittstelle" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Ziel AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Gerät[neu]" msgid "FlowView Listeners" msgstr "FlowView Hörer" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Suche" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Anwenden" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Filter setzen/auffrischen" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Löschen" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Filter löschen" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Zuhörer" @@ -750,34 +755,38 @@ msgstr "Klicken Sie auf \"Weiter\", um den/die folgenden Zeitplan(e) zu aktivier msgid "You must select at least one Filter." msgstr "Sie müssen mindestens ein Gerät auswählen." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Durchflussfilter" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filter setzen/auffrischen" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Voreinstellung" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Filtername" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Hostnamenauflösung" @@ -828,7 +837,7 @@ msgstr "Neuer Zeitplan" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Geben Sie einen Berichtstitel für den FlowView-Zeitplan ein." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Aktiviert" @@ -903,18 +912,22 @@ msgstr "Bericht: (edit: %s)" msgid "Report: [new]" msgstr "Bericht: [neu]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Datumsanfang Auswahl" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView Zeitpläne" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Zeitpläne" @@ -924,22 +937,22 @@ msgstr "Zeitpläne" msgid "Schedule Title" msgstr "Titel des Zeitplans" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Intervall" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Startdatum" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Nächstes Senden" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "E-Mail" @@ -959,25 +972,20 @@ msgstr "Bericht: (edit: %s)" msgid "Filter: [new]" msgstr "Bericht: [neu]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Berichte drucken" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Berichte drucken" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Eigenes" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Datumsende Auswahl" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Anzeigen/Verbergen" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tabellen-Status kann nicht ermittelt werden" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bytes-Leiste" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Paketleiste" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Flussleiste" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Unbekannt" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Kakteen Flussansicht" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Nettomittelzufluss - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Neuer Fluss" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Das Skript/der Ursprung der Daten für die Datenquelle sammelt" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Das Skript/der Ursprung der Daten für die Datenquelle sammelt" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Ziel AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Ziel-Port" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Ziel-Port" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Ziel IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Dest Präfix" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Pakete" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Zusammenfassende Statistiken" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP-Paketgrößenverteilung (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Pakete pro Flow-Verteilung (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Oktette pro Durchflussverteilung (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Ablaufzeitverteilung (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Sie müssen einen Statistikbericht oder gedruckten Bericht auswählen!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Sie dürfen nur einen Statistikbericht oder einen gedruckten Bericht auswählen (nicht beides)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Ungültige Daten, Enddatum/Uhrzeit liegt vor Startdatum/Uhrzeit!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Ungültige IP-Adresse für die Quelladresse!
(Muss in Form von'192.168.0.1' vorliegen)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Ungültiges Subnetz für die Quelladresse!
(Muss in Form von'192.168.0.0.1/255.255.255.255.0' oder'192.168.0.1/24' vorliegen)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Ungültige IP-Adresse für die Zieladresse!
(Muss in Form von'192.168.0.1' vorliegen)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Ungültiges Subnetz für die Zieladresse!
(Muss in Form von'192.168.0.1/255.255.255.255.0' oder'192.168.0.1/24' vorliegen)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Ungültiger Wert für Source Interface!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Ungültiger Wert für Quellport! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Ungültiger Wert für Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Ungültiger Wert für die Zielschnittstelle!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Ungültiger Wert für Ziel-Port! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Ungültiger Wert für Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Ungültiger Wert für Protokoll! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Ungültiger Wert für TCP Flag! (z.B.: 0x1b oder 0x1b/SA oder SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Ungültiger Wert für Cutoff Octets!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Ungültiger Wert für Cutoff Lines!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Ungültiger Wert für Sortierfeld!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "FlowView Chart für %s Typ ist %s Typ ist %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Maximale Durchflüsse:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Paketleiste" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Ablaufbetrachter" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Der Filter wurde gelöscht." -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Der Filter wurde aktualisiert." -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Flow Viewer" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Ansicht" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Speichern" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Verändern)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Aktionen" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d Woche" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d Wochen" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Monat" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d Monate" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d Jahr" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Sonstiges" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Eine kommagetrennte Liste von Domänennamen, die von der Domäne entfernt werden sollen." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Entfernen von Domänennamen" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Dies ist der DNS-Server, der zur Namensauflösung verwendet wird." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Alternativer DNS-Server" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "DNS nicht auflösen" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "DNS-Server unten verwenden" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Lokalen Server verwenden" +#~ msgid "ST" +#~ msgstr "MS" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Die Methode, mit der Sie Hostnamen auflösen möchten." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Dies ist der Pfad, um den Pfad Ihrer Flow-Ordnerstruktur zu bestimmen." +#~ msgid "EGP" +#~ msgstr "Ägyptisches Pfund" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Flows-Verzeichnis" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Dies ist der Pfad zu einem temporären Verzeichnis, um zu arbeiten." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Arbeitsverzeichnis der Flow Tools" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Der Pfad zu Ihrem Flow-Cat, Flow-Filter und Flow-Stat-Binärprogramm." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Flow Tools Binärpfad" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Hörer verwalten" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Zielsysteme" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Läuft ab" +#~ msgid "CHAOS" +#~ msgstr "WÄHLEN" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Kompression" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Version" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Wie lange Sie Ihre Flow-Dateien aufbewahren müssen." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Ablauf" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Wie oft Sie eine neue Flow-Datei erstellen." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Wechselfrequenz" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Komprimierungsgrad der Flow-Dateien. Eine höhere Kompression spart Platz, verbraucht aber mehr CPU, um Ergebnisse zu speichern und abzurufen." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Komprimierungsgrad" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "NetFlow-Protokoll-Version, die vom Gerät verwendet wird." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow-Version" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Verzeichnisstruktur, die für die Abläufe für dieses Gerät verwendet wird." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Verschachtelung" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Verzeichnis, in dem sich die Abläufe dieser Geräte befinden. Dieses Verzeichnis muss sich im Pfad Flow Directory befinden. Legen Sie hier nicht den vollen Weg ein. Auch nicht, dass, wenn Sie den Pfad ändern, alle vordefinierten Filer-Setups, um sie zu verwenden, neu gespeichert werden müssen." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Verzeichnis kann nicht geöffnet werden" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Höchste)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Deaktiviert)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools getaggt Version 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS Präfix-Port-Aggregation" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS Präfix-Aggregation" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Ziel-Präfix-Aggregation" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS Quellpräfix-Aggregation" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Protokoll-Port-Aggregation" +#~ msgid "TP++" +#~ msgstr "TP++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Aggregation" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Vollfluss" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow Quellziel" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow-Zielort" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Route" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow Präfix-Aggregation" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow Destination Präfix Aggregation" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow Quellpräfix-Aggregation" +#~ msgid "RSVP" +#~ msgstr "Anmeldung" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow Protokoll-Portaggregation" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS Aggregation" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow Version 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow Version 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow Version 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow Version 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d Minuten" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minute" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Tage" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Füge if ein:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Berichtsparameter" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Klicken Sie auf \"Weiter\", um die folgende Lokation zu löschen. Beachten Sie, dass die Bindung zugewiesener Geräte aufgehoben wird." +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Ziel-Port(s)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(z.B. -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Einschränkungen des Durchflussfilters" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Eine auswählen..." +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Vollständig in definiertem Zeitrahmen" +#~ msgid "Src Prefix" +#~ msgstr "Src Präfix" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Startzeit in vorgegebener Zeitspanne" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Endzeit in der angegebenen Zeitspanne" +#~ msgid "Src Port" +#~ msgstr "Src-Port" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Jedes Teil in der angegebenen Zeitspanne" +#~ msgid "End Date" +#~ msgstr "Enddatum" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Vollständig (Katalysator)" +#~ msgid "Filter Type" +#~ msgstr "Filtername" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Präfix-Aggregation" +#~ msgid "View" +#~ msgstr "Ansicht" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Ziel-Präfix-Aggregation" +#~ msgid "Defaults" +#~ msgstr "SNMP Standardwerte" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Aggregation der Quellpräfixe" +#~ msgid "Save As" +#~ msgstr "Speichern unter" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Protokoll-Portaggregation" +#~ msgid "Filter Data" +#~ msgstr "Filtername" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS-Aggregation" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " In den obigen Feldern sind mehrere Feldeingaben, getrennt durch Kommata, erlaubt. Ein Minuszeichen (-) negiert einen Eintrag (z.B. -80 für Port, würde jeden Port außer 80 bedeuten)." #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 Zeile mit Tags" +#~ msgid "New Query" +#~ msgstr "Neue Abfrage" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Präfix" +#~ msgid "Update" +#~ msgstr "Aktualisieren" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "Filter gespeichert" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Benutzeroberfläche" +#~ msgid "Filter Settings Saved" +#~ msgstr "Filtereinstellungen gespeichert" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filter aktualisiert" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filter aktualisiert" +#~ msgid "Interface" +#~ msgstr "Benutzeroberfläche" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Filtereinstellungen gespeichert" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filter gespeichert" +#~ msgid "Prefix" +#~ msgstr "Präfix" #, fuzzy -#~ msgid "Update" -#~ msgstr "Aktualisieren" +#~ msgid "1 Line with Tags" +#~ msgstr "1 Zeile mit Tags" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Neue Abfrage" +#~ msgid "AS Aggregation" +#~ msgstr "AS-Aggregation" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " In den obigen Feldern sind mehrere Feldeingaben, getrennt durch Kommata, erlaubt. Ein Minuszeichen (-) negiert einen Eintrag (z.B. -80 für Port, würde jeden Port außer 80 bedeuten)." +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Protokoll-Portaggregation" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Filtername" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Aggregation der Quellpräfixe" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Speichern unter" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Ziel-Präfix-Aggregation" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "SNMP Standardwerte" +#~ msgid "Prefix Aggregation" +#~ msgstr "Präfix-Aggregation" #, fuzzy -#~ msgid "View" -#~ msgstr "Ansicht" +#~ msgid "Full (Catalyst)" +#~ msgstr "Vollständig (Katalysator)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Filtername" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Jedes Teil in der angegebenen Zeitspanne" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Enddatum" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Endzeit in der angegebenen Zeitspanne" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src-Port" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Startzeit in vorgegebener Zeitspanne" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Vollständig in definiertem Zeitrahmen" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src Präfix" +#~ msgid "Select One" +#~ msgstr "Eine auswählen..." #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Einschränkungen des Durchflussfilters" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(z.B. -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Ziel-Port(s)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Klicken Sie auf \"Weiter\", um die folgende Lokation zu löschen. Beachten Sie, dass die Bindung zugewiesener Geräte aufgehoben wird." #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Berichtsparameter" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Füge if ein:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Tage" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Minute" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d Minuten" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow Version 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow Version 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow Version 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow Version 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS Aggregation" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow Protokoll-Portaggregation" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow Quellpräfix-Aggregation" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow Destination Präfix Aggregation" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Anmeldung" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow Präfix-Aggregation" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow-Zielort" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow Quellziel" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Vollfluss" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Aggregation" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Protokoll-Port-Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS Quellpräfix-Aggregation" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Ziel-Präfix-Aggregation" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS Präfix-Aggregation" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS Präfix-Port-Aggregation" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools getaggt Version 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Deaktiviert)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Höchste)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Verzeichnis kann nicht geöffnet werden" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Verzeichnis, in dem sich die Abläufe dieser Geräte befinden. Dieses Verzeichnis muss sich im Pfad Flow Directory befinden. Legen Sie hier nicht den vollen Weg ein. Auch nicht, dass, wenn Sie den Pfad ändern, alle vordefinierten Filer-Setups, um sie zu verwenden, neu gespeichert werden müssen." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Verschachtelung" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Verzeichnisstruktur, die für die Abläufe für dieses Gerät verwendet wird." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow-Version" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "NetFlow-Protokoll-Version, die vom Gerät verwendet wird." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "Komprimierungsgrad" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Komprimierungsgrad der Flow-Dateien. Eine höhere Kompression spart Platz, verbraucht aber mehr CPU, um Ergebnisse zu speichern und abzurufen." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Wechselfrequenz" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Wie oft Sie eine neue Flow-Datei erstellen." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Ablauf" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Wie lange Sie Ihre Flow-Dateien aufbewahren müssen." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Version" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Kompression" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Läuft ab" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Zielsysteme" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "WÄHLEN" +#~ msgid "Manage Listeners" +#~ msgstr "Hörer verwalten" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Flow Tools Binärpfad" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Der Pfad zu Ihrem Flow-Cat, Flow-Filter und Flow-Stat-Binärprogramm." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Arbeitsverzeichnis der Flow Tools" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Dies ist der Pfad zu einem temporären Verzeichnis, um zu arbeiten." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Flows-Verzeichnis" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Dies ist der Pfad, um den Pfad Ihrer Flow-Ordnerstruktur zu bestimmen." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Die Methode, mit der Sie Hostnamen auflösen möchten." #, fuzzy -#~ msgid "EGP" -#~ msgstr "Ägyptisches Pfund" +#~ msgid "Use Local Server" +#~ msgstr "Lokalen Server verwenden" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "DNS-Server unten verwenden" #, fuzzy -#~ msgid "ST" -#~ msgstr "MS" +#~ msgid "Don't Resolve DNS" +#~ msgstr "DNS nicht auflösen" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Alternativer DNS-Server" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Dies ist der DNS-Server, der zur Namensauflösung verwendet wird." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Entfernen von Domänennamen" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Eine kommagetrennte Liste von Domänennamen, die von der Domäne entfernt werden sollen." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Neuer Fluss" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Berichte drucken" diff --git a/locales/po/el-GR.po b/locales/po/el-GR.po index dc98be2..3337b64 100644 --- a/locales/po/el-GR.po +++ b/locales/po/el-GR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 20:43-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP θύρα πηγής" msgid "UDP/TCP Port" msgstr "Θύρα UDP / TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Πηγή IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Προορισμός IP" @@ -98,13 +98,13 @@ msgstr "Διεπαφή εξόδου" msgid "Input/Output Interface" msgstr "Διασύνδεση εισόδου / εξόδου" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Πηγή AS" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Προορισμός AS" @@ -119,7 +119,7 @@ msgstr "Πηγή / προορισμός AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Πρόθεμα προέλευσης" @@ -193,7 +193,7 @@ msgstr "Χωρίς Όριο" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Όλα" @@ -207,7 +207,7 @@ msgstr "Πηγή (ες) θύρας" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Ροές" @@ -216,8 +216,8 @@ msgstr "Ροές" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Πακέτα" @@ -243,18 +243,18 @@ msgstr "Προορισμός IP" msgid "Port" msgstr "Θύρα" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Dest. IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Διευθύνσεις ηλεκτρονικού ταχυδρομείου" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Πρωτόκολλο" @@ -279,290 +279,295 @@ msgstr "Όροι Χρήσης" msgid "Destingation Prefix" msgstr "Πρόθεμα προορισμού" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Πηγή IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Προορισμός IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Πηγή (ες) θύρας" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Προορισμός IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Ώρα Έναρξης" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Ώρα Λήξης" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Ενεργό" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Σημαίες" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Πηγή IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Προορισμός IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Καθαρισμός Φίλτρων" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Φίλτρο" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Φίλτρο" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Ακροατής" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Προεπιλογές" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Έκθεση: [νέο]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Εντυπος:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Στατιστικά" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Στατιστικές αναφορές" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Εκτύπωση αναφορών" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Διαχείριση Προγραμμάτων" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Επίλυση διευθύνσεων:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Επίλυση διευθύνσεων:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Ναι" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Όχι" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Πεδίο ταξινόμησης:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Ελάχιστα byte:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Πρωτόκολλα" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Πρωτόκολλα" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Σημαίες TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Πεδία TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Πηγή (ες) θύρας" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Διασύνδεση πηγής" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Dest Port" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Διασύνδεση Dest" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Συσκευή [νέο]" msgid "FlowView Listeners" msgstr "Οι ακροατές ροής δεδομένων" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Αναζήτηση" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Πήγαινε" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Ρύθμιση / Ανανέωση φίλτρων" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Καθαρισμός" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Καθαρισμός Φίλτρων" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Ακρόαση" @@ -750,34 +755,38 @@ msgstr "Κάντε κλικ στο κουμπί 'Συνέχεια' για να msgid "You must select at least one Filter." msgstr "Πρέπει να επιλέξετε τουλάχιστον μία συσκευή." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Φίλτρα ροής" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Φίλτρα" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Προεπιλογή" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Όνομα φίλτρου" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Ονομασία κεντρικού υπολογιστή" @@ -828,7 +837,7 @@ msgstr "Νέο πρόγραμμα" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Καταχωρίστε έναν τίτλο αναφοράς για το πρόγραμμα FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Ενεργοποιημένο" @@ -903,18 +912,22 @@ msgstr "Αναφορά: [επεξεργασία: %s]" msgid "Report: [new]" msgstr "Έκθεση: [νέο]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Επιλογή επιλογής έναρξης" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView Schedules" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Πρόγραμμα" @@ -924,22 +937,22 @@ msgstr "Πρόγραμμα" msgid "Schedule Title" msgstr "Τίτλος χρονοδιαγράμματος" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Διάστημα" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Ημερομηνία Έναρξης" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Επόμενο Αποστολή" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Email" @@ -959,25 +972,20 @@ msgstr "Αναφορά: [επεξεργασία: %s]" msgid "Filter: [new]" msgstr "Έκθεση: [νέο]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Εκτύπωση αναφορών" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Εκτύπωση αναφορών" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Προσαρμογή" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Επιλογή ημερομηνίας λήξης" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Εμφάνιση απόκρυψη" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Πίνακας" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bytes Bar" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Μπαταρίες πακέτων" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Ροή ροής" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Άγνωστο" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netflow -%" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Νέα ροή" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Πηγή AS" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Πηγή AS" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Dest Port" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Dest Port" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Dest Prefix" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Πακέτα" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Συνοπτική Στατιστική" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Διανομή μεγέθους πακέτων IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Πακέτα ανά διανομή ροής (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Οκτάδες ανά διανομή ροής (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Διανομή χρόνου ροής (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Πρέπει να επιλέξετε μια αναφορά στατιστικών στοιχείων ή μια τυπωμένη αναφορά!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Πρέπει να επιλέξετε μόνο μια αναφορά στατιστικών στοιχείων ή μια τυπωμένη αναφορά (όχι και τις δύο)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Μη έγκυρες ημερομηνίες, η ημερομηνία / ώρα λήξης είναι νωρίτερα από την ημερομηνία / ώρα έναρξης!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Μη έγκυρη διεύθυνση IP για τη διεύθυνση προέλευσης!
(Πρέπει να έχει τη μορφή '192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Μη έγκυρο υποδίκτυο για τη διεύθυνση προέλευσης!
(Πρέπει να έχει τη μορφή '192.168.0.1/255.255.255.0' ή '192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Μη έγκυρη διεύθυνση IP για τη διεύθυνση προορισμού!
(Πρέπει να έχει τη μορφή '192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Μη έγκυρο υποδίκτυο για τη διεύθυνση προορισμού!
(Πρέπει να έχει τη μορφή '192.168.0.1/255.255.255.0' ή '192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Μη έγκυρη τιμή για τη διασύνδεση προέλευσης!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Μη έγκυρη τιμή για τη θύρα προέλευσης! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Μη έγκυρη τιμή για την προέλευση AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Μη έγκυρη τιμή για τη διεπαφή προορισμού!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Μη έγκυρη τιμή για τη θύρα προορισμού! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Μη έγκυρη τιμή για τον προορισμό AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Μη έγκυρη τιμή για το πρωτόκολλο! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Μη έγκυρη τιμή για την επισήμανση TCP! (πρώην: 0x1b ή 0x1b / SA ή SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Μη έγκυρη τιμή για τα Octets Cutoff!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Μη έγκυρη τιμή για τις γραμμές Cutoff!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Μη έγκυρη τιμή για το πεδίο Ταξινόμηση!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Ο χάρτης FlowView για τον τύπο %s είναι %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Μέγιστες ροές:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Μπαταρίες πακέτων" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Flow Viewer" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Διαχείριση ροών" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Το φίλτρο έχει διαγραφεί" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Το φίλτρο έχει ενημερωθεί" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Flow Viewer" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Προβολή" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Αποθήκευση" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Eπεξεργασία)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Ενέργειες" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d Εβδομάδα" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d εβδομάδες" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d Μήνας" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% d Μήνες" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d Έτος" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Διάφορα" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Μια οριοθετημένη με κόμμα λίστα ονομάτων τομέων για απογύμνωση από τον τομέα." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Διαγραφή ονομάτων τομέα" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Αυτός είναι ο διακομιστής DNS που χρησιμοποιείται για την επίλυση ονομάτων." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Εναλλασσόμενος διακομιστής DNS" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Μην επιλύσετε το DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Χρησιμοποιήστε τον παρακάτω διακομιστή DNS" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Χρησιμοποιήστε τον τοπικό διακομιστή" +#~ msgid "ST" +#~ msgstr "Σεν. Φορ" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Η μέθοδος με την οποία θέλετε να επιλύσετε τα ονόματα κεντρικών υπολογιστών." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Αυτή είναι η διαδρομή στη βάση της διαδρομής της δομής του φάκελου ροής." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Κατάλογος ροών" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Αυτή είναι η διαδρομή προς έναν προσωρινό κατάλογο για να δουλέψετε." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Εργαλεία ροής Κατάλογος εργασίας" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Η διαδρομή προς τη ροή-γάτα σας, το φίλτρο ροής και το binary flow stat." +#~ msgid "PUP" +#~ msgstr "ΚΟΥΤΑΒΙ" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Εργαλεία ροής Δυαδική διαδρομή" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Διαχειριστείτε τους ακροατές" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Τύπος Συσκευής" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Εκπνέω" +#~ msgid "CHAOS" +#~ msgstr "ΧΑΟΣ" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Συμπίεση" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Έκδοση" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Πόσο καιρό να διατηρήσετε τα αρχεία ροής σας." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Λήξη" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Πόσο συχνά δημιουργείτε ένα νέο αρχείο ροής." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Περιστροφή" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Επίπεδο συμπίεσης αρχείων ροής. Η υψηλότερη συμπίεση εξοικονομεί χώρο αλλά χρησιμοποιεί περισσότερη CPU για να αποθηκεύει και να ανακτά τα αποτελέσματα." +#~ msgid "TRUNK-2" +#~ msgstr "ΤΡΑΝ-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Επίπεδο συμπίεσης" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Έκδοση πρωτοκόλλου NetFlow που χρησιμοποιείται από τη συσκευή." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Έκδοση NetFlow" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Δομή καταλόγου που θα χρησιμοποιηθεί για τις ροές αυτής της συσκευής." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Φωτισμός" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Ο κατάλογος με τους οποίους βρίσκονται οι ροές των συσκευών. Αυτός ο κατάλογος πρέπει να βρίσκεται στη διαδρομή καταλόγου ροών. Μη βάζετε το πλήρες μονοπάτι εδώ. Επίσης, όχι ότι αν αλλάξετε τη διαδρομή, θα πρέπει να επανασυνδεθεί όλη η προκαθορισμένη ρύθμιση αρχείου για να τη χρησιμοποιήσετε." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Κατάλογος" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Υψηλότερη)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Απενεργοποιημένο)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools ετικέτα έκδοσης 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS Προρύθιση Συγκέντρωση Λιμένων" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS Prefix Aggregation" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Συσχέτιση προθέματος προορισμού NetFlow" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS Συσχέτιση προέδρου πηγής" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Σύγκριση λιμένων Proto" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Συγκέντρωση" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "Πλήρης ροή NetFlow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Προορισμός πηγής NetFlow" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Προορισμός NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Διαδρομή" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Συγκέντρωση προθέματος NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Σύνολο προθέματος προορισμού NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Συσχέτιση προέδρου προέλευσης NetFlow" +#~ msgid "RSVP" +#~ msgstr "RSVP" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow Συγκέντρωση λιμένων Proto" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS Συσσωμάτωση" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow έκδοση 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow έκδοση 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "Έκδοση NetFlow 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "Έκδοση NetFlow 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d λεπτά" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d λεπτά" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Ημέρες" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Συμπεριλάβετε εάν:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Παράμετροι αναφοράς" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Σημείωση:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Dest Port (ες)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(π.χ. -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Περιορισμοί φίλτρου ροής" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Επέλεξε ένα" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Πλήρως σε καθορισμένο χρονικό διάστημα" +#~ msgid "Src Prefix" +#~ msgstr "Src πρόθεμα" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Ώρα έναρξης για συγκεκριμένο χρονικό διάστημα" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Χρόνος λήξης σε καθορισμένο χρονικό διάστημα" +#~ msgid "Src Port" +#~ msgstr "Src Port" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Οποιοδήποτε Μέρος σε καθορισμένο χρονικό διάστημα" +#~ msgid "End Date" +#~ msgstr "Ημερομηνία Λήξης" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Πλήρης (Καταλύτης)" +#~ msgid "Filter Type" +#~ msgstr "Όνομα φίλτρου" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Σύνολο προθέματος" +#~ msgid "View" +#~ msgstr "Προβολή" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Προεγκατάσταση προθέματος προορισμού" +#~ msgid "Defaults" +#~ msgstr "Προκαθορισμένες τιμές" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Συσχέτιση προθέματος προέλευσης" +#~ msgid "Save As" +#~ msgstr "Αποθήκευση ως" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Συγκέντρωση λιμένων πρωτοκόλλου" +#~ msgid "Filter Data" +#~ msgstr "Όνομα φίλτρου" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS Συγκέντρωση" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "Πολλαπλές καταχωρήσεις πεδίων, διαχωρισμένες με κόμματα, επιτρέπονται στα παραπάνω πεδία. Ένα σημάδι μείον (-) θα αναιρέσει μια καταχώρηση (π.χ. -80 για το Port, θα σημαίνει οποιοδήποτε λιμάνι, αλλά 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 γραμμή με ετικέτες" +#~ msgid "New Query" +#~ msgstr "Νέο ερώτημα" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Πρόθεμα" +#~ msgid "Update" +#~ msgstr "Ενημέρωση" #, fuzzy -#~ msgid "AS" -#~ msgstr "ΟΠΩΣ ΚΑΙ" +#~ msgid "Filter Saved" +#~ msgstr "Το φίλτρο αποθηκεύτηκε" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Διεπαφή" +#~ msgid "Filter Settings Saved" +#~ msgstr "Οι ρυθμίσεις φίλτρου αποθηκεύτηκαν" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Φιλτράρισμα ενημέρωσης" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Φιλτράρισμα ενημέρωσης" +#~ msgid "Interface" +#~ msgstr "Διεπαφή" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Οι ρυθμίσεις φίλτρου αποθηκεύτηκαν" +#~ msgid "AS" +#~ msgstr "ΟΠΩΣ ΚΑΙ" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Το φίλτρο αποθηκεύτηκε" +#~ msgid "Prefix" +#~ msgstr "Πρόθεμα" #, fuzzy -#~ msgid "Update" -#~ msgstr "Ενημέρωση" +#~ msgid "1 Line with Tags" +#~ msgstr "1 γραμμή με ετικέτες" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Νέο ερώτημα" +#~ msgid "AS Aggregation" +#~ msgstr "AS Συγκέντρωση" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "Πολλαπλές καταχωρήσεις πεδίων, διαχωρισμένες με κόμματα, επιτρέπονται στα παραπάνω πεδία. Ένα σημάδι μείον (-) θα αναιρέσει μια καταχώρηση (π.χ. -80 για το Port, θα σημαίνει οποιοδήποτε λιμάνι, αλλά 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Συγκέντρωση λιμένων πρωτοκόλλου" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Όνομα φίλτρου" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Συσχέτιση προθέματος προέλευσης" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Αποθήκευση ως" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Προεγκατάσταση προθέματος προορισμού" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Προκαθορισμένες τιμές" +#~ msgid "Prefix Aggregation" +#~ msgstr "Σύνολο προθέματος" #, fuzzy -#~ msgid "View" -#~ msgstr "Προβολή" +#~ msgid "Full (Catalyst)" +#~ msgstr "Πλήρης (Καταλύτης)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Όνομα φίλτρου" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Οποιοδήποτε Μέρος σε καθορισμένο χρονικό διάστημα" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Ημερομηνία Λήξης" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Χρόνος λήξης σε καθορισμένο χρονικό διάστημα" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src Port" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Ώρα έναρξης για συγκεκριμένο χρονικό διάστημα" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Πλήρως σε καθορισμένο χρονικό διάστημα" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src πρόθεμα" +#~ msgid "Select One" +#~ msgstr "Επέλεξε ένα" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Περιορισμοί φίλτρου ροής" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(π.χ. -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Dest Port (ες)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Σημείωση:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Παράμετροι αναφοράς" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Συμπεριλάβετε εάν:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Ημέρες" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d λεπτά" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d λεπτά" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "Έκδοση NetFlow 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "Έκδοση NetFlow 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow έκδοση 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow έκδοση 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS Συσσωμάτωση" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow Συγκέντρωση λιμένων Proto" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Συσχέτιση προέδρου προέλευσης NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Σύνολο προθέματος προορισμού NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "RSVP" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Συγκέντρωση προθέματος NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Προορισμός NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Προορισμός πηγής NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Διαδρομή" +#~ msgid "NetFlow Full Flow" +#~ msgstr "Πλήρης ροή NetFlow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Συγκέντρωση" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Σύγκριση λιμένων Proto" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS Συσχέτιση προέδρου πηγής" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Συσχέτιση προθέματος προορισμού NetFlow" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS Prefix Aggregation" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS Προρύθιση Συγκέντρωση Λιμένων" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools ετικέτα έκδοσης 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Απενεργοποιημένο)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Υψηλότερη)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Κατάλογος" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Ο κατάλογος με τους οποίους βρίσκονται οι ροές των συσκευών. Αυτός ο κατάλογος πρέπει να βρίσκεται στη διαδρομή καταλόγου ροών. Μη βάζετε το πλήρες μονοπάτι εδώ. Επίσης, όχι ότι αν αλλάξετε τη διαδρομή, θα πρέπει να επανασυνδεθεί όλη η προκαθορισμένη ρύθμιση αρχείου για να τη χρησιμοποιήσετε." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Φωτισμός" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Δομή καταλόγου που θα χρησιμοποιηθεί για τις ροές αυτής της συσκευής." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Έκδοση NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Έκδοση πρωτοκόλλου NetFlow που χρησιμοποιείται από τη συσκευή." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "Επίπεδο συμπίεσης" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Επίπεδο συμπίεσης αρχείων ροής. Η υψηλότερη συμπίεση εξοικονομεί χώρο αλλά χρησιμοποιεί περισσότερη CPU για να αποθηκεύει και να ανακτά τα αποτελέσματα." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Περιστροφή" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "ΤΡΑΝ-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Πόσο συχνά δημιουργείτε ένα νέο αρχείο ροής." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Λήξη" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Πόσο καιρό να διατηρήσετε τα αρχεία ροής σας." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Έκδοση" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Συμπίεση" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Εκπνέω" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Τύπος Συσκευής" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "ΧΑΟΣ" +#~ msgid "Manage Listeners" +#~ msgstr "Διαχειριστείτε τους ακροατές" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Εργαλεία ροής Δυαδική διαδρομή" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Η διαδρομή προς τη ροή-γάτα σας, το φίλτρο ροής και το binary flow stat." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Εργαλεία ροής Κατάλογος εργασίας" #, fuzzy -#~ msgid "PUP" -#~ msgstr "ΚΟΥΤΑΒΙ" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Αυτή είναι η διαδρομή προς έναν προσωρινό κατάλογο για να δουλέψετε." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Κατάλογος ροών" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Αυτή είναι η διαδρομή στη βάση της διαδρομής της δομής του φάκελου ροής." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Η μέθοδος με την οποία θέλετε να επιλύσετε τα ονόματα κεντρικών υπολογιστών." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Χρησιμοποιήστε τον τοπικό διακομιστή" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Χρησιμοποιήστε τον παρακάτω διακομιστή DNS" #, fuzzy -#~ msgid "ST" -#~ msgstr "Σεν. Φορ" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Μην επιλύσετε το DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Εναλλασσόμενος διακομιστής DNS" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Αυτός είναι ο διακομιστής DNS που χρησιμοποιείται για την επίλυση ονομάτων." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Διαγραφή ονομάτων τομέα" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Μια οριοθετημένη με κόμμα λίστα ονομάτων τομέων για απογύμνωση από τον τομέα." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Νέα ροή" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Εκτύπωση αναφορών" diff --git a/locales/po/es-ES.po b/locales/po/es-ES.po index c18dd38..2cd47af 100644 --- a/locales/po/es-ES.po +++ b/locales/po/es-ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-04-01 21:12+0000\n" "Last-Translator: Javier Pobeda \n" "Language-Team: Spanish \n" @@ -58,13 +58,13 @@ msgstr "Puerto de origen UDP/TCP" msgid "UDP/TCP Port" msgstr "Puerto UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP de origen" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Destino IP" @@ -99,13 +99,13 @@ msgstr "Interfaz de salida" msgid "Input/Output Interface" msgstr "Interfaz de entrada/salida" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Nombre de Email de origen" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Destino de log" @@ -120,7 +120,7 @@ msgstr "Fuente/Destino AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Prefijo de origen" @@ -194,7 +194,7 @@ msgstr "Límite de ejecución" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Todos" @@ -208,7 +208,7 @@ msgstr "Puerto(s) de origen" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Flujos" @@ -217,8 +217,8 @@ msgstr "Flujos" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Tamaño de archivo RRD (en Bytes)" @@ -227,8 +227,8 @@ msgstr "Tamaño de archivo RRD (en Bytes)" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Paquetes" @@ -244,18 +244,18 @@ msgstr "Destino IP" msgid "Port" msgstr "Puerto" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Destino IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Direcciones de correo" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr " - SNMP V3: protocolo de autenticación SNMP" @@ -280,290 +280,295 @@ msgstr "Términos y Condiciones" msgid "Destingation Prefix" msgstr "Prefijo de destino" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "ARN" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP de origen" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Destino IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Puerto(s) de origen" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Destino IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Hora de inicio" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Hora de finalización" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Activo" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Banderas" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP de origen" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Destino IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Restablecer filtros" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtro" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtro" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Escuchador" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Valores predefinidos" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Informe: [nuevo]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Impreso:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Estadísticas" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Informes estadísticos" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Imprimir informes" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Gestionar calendarios" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Resolver direcciones:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Resolver direcciones:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Sí" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "No" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Campo de clasificación:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Bytes mínimos:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protocolos" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protocolos" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Banderas TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Campos de TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Puerto(s) de origen" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Interfase fuente" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Puerto de destino" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Interfaz de destino" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Destino AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Dispositivo [Nuevo]" msgid "FlowView Listeners" msgstr "Oyentes FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Buscar" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Ir" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Definir/Refrescar Filtros" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Restablecer" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Restablecer filtros" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Oyentes" @@ -750,34 +755,38 @@ msgstr "Haga clic en'Continuar' para habilitar el siguiente Horario(s)." msgid "You must select at least one Filter." msgstr "Debes seleccionar al menos un dispositivo." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Filtros de flujo" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filtros" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Por defecto" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Nombre del filtro" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Resolución de nombres de host" @@ -828,7 +837,7 @@ msgstr "Nuevo horario" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Introduzca un título de informe para el programa de FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Habilitado" @@ -903,18 +912,22 @@ msgstr "Informe: [editar: %s]" msgid "Report: [new]" msgstr "Informe: [nuevo]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Selector de fecha de inicio" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Horarios de FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "No hay Tareas Programadas" @@ -924,22 +937,22 @@ msgstr "No hay Tareas Programadas" msgid "Schedule Title" msgstr "Titulo de programación" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Intervalo" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Fecha de inicio" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Siguiente Enviar" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Correo" @@ -959,25 +972,20 @@ msgstr "Informe: [editar: %s]" msgid "Filter: [new]" msgstr "Informe: [nuevo]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Imprimir informes" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1075,338 +1083,354 @@ msgstr "Imprimir informes" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Personalizado" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Selector de fecha de finalización" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Visualizar/Ocultar" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Truncar la tabla de resultados agregados de puertos" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Barra de bytes" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Barra de paquetes" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Barra de Flujos" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Desconocido" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Flujo neto - %." -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Nuevo Flujo" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Nombre de Email de origen" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Nombre de Email de origen" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Destino AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Puerto de destino" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Puerto de destino" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Destino SI" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Prefijo de destino" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Paquetes" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Resumen Estadístico" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Distribución del tamaño de los paquetes IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Paquetes por distribución de flujo (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Octetos por distribución de flujo (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Distribución del tiempo de flujo (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Debe seleccionar un informe estadístico o un informe impreso!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Debe seleccionar sólo un informe estadístico o un informe impreso (no ambos)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Fechas no válidas, la fecha/hora de finalización es anterior a la fecha/hora de inicio!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "IP inválida para la dirección de origen!
(Debe ser en forma de `192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Subred inválida para la dirección de origen!
(Debe ser en forma de 192.168.0.1/255.255.255.0' o `192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "IP inválida para la dirección de destino!
(Debe ser en forma de'192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Subred inválida para la dirección de destino!
(Debe ser en forma de 192.168.0.1/255.255.255.0' o `192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Valor no válido para la interfaz fuente!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Valor no válido para el puerto de origen! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Valor no válido para Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Valor no válido para la interfaz de destino!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Valor no válido para el puerto de destino! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Valor no válido para el AS de destino! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Valor no válido para el protocolo! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Valor no válido para TCP Flag! (ej: 0x1b o 0x1b/SA o SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Valor no válido para Octetos de corte!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Valor no válido para las líneas de corte!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Valor no válido para el campo de clasificación!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Diagrama FlowView para %s Tipo es %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Max Flows:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Barra de paquetes" @@ -1421,721 +1445,733 @@ msgstr "Plugin -> Visor de flujo" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Administrador de flujo" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "El filtro ha sido eliminado" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "El filtro ha sido actualizado" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Visor de flujo" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Vista" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Guardar" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(editar)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "(acciones)" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d semana" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d semanas" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Mes" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d Meses" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d Año" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Misc" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Una lista delimitada por comas de los nombres de dominio que se deben quitar del dominio." +#~ msgid "TCP" +#~ msgstr "El puerto UDP/TCP para consultar al agente SNMP." #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Nombres de dominio en tira" +#~ msgid "UDP" +#~ msgstr "Ping UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Este es el servidor DNS utilizado para resolver nombres." +#~ msgid "ICMP" +#~ msgstr "Tiempo agotado de Ping ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Servidor DNS alternativo" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "No Resolver DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Use el servidor DNS a continuación" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Usar Servidor Local" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "El método por el cual desea resolver los nombres de host." +#~ msgid "CBT" +#~ msgstr "TCC" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Esta es la ruta para basar la ruta de la estructura de carpetas de flujo." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Directorio de Flujos" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Esta es la ruta a un directorio temporal para hacer el trabajo." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Directorio de trabajo de Flow Tools" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "El camino hacia su binario flow-cat, flow-filter y flow-stat." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Ruta binaria de las herramientas de flujo" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Gestionar oyentes" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Dispositivos" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Caducar cuentas inactivas" +#~ msgid "CHAOS" +#~ msgstr "CAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Compresión" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Versión" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Cuánto tiempo para mantener sus archivos de flujo." +#~ msgid "HMP" +#~ msgstr "PMH" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Vencimiento" +#~ msgid "PRM" +#~ msgstr "PMR" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Con qué frecuencia crear un nuevo archivo de flujo." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotación" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Nivel de compresión de los archivos de flujo. Una mayor compresión ahorra espacio pero utiliza más CPU para almacenar y recuperar los resultados." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Nivel de compresión" +#~ msgid "LEAF-1" +#~ msgstr "HOJA-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Versión del protocolo NetFlow utilizada por el dispositivo." +#~ msgid "LEAF-2" +#~ msgstr "HOJA-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Versión NetFlow" +#~ msgid "RDP" +#~ msgstr "PDR" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Estructura de directorios que se utilizará para los flujos de este dispositivo." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nidificación" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Directorio en el que fluyen estos dispositivos. Este directorio debe estar en la ruta del directorio de flujo. No pongas el camino completo aquí. Además, no es que si cambia la ruta, todos los ajustes predefinidos del archivador para usarla tendrán que ser guardados de nuevo." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Directorio de backup de archivos RRD" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Máximo)" +#~ msgid "MERIT-INP" +#~ msgstr "MÉRITO-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Desactivado)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools etiquetado versión 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Agregación de puertos de prefijo NetFlow ToS" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Agregación de Prefijos NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "Agregación de Prefijos de Destino NetFlow ToS" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Agregación de Prefijos de Fuente NetFlow ToS" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "Agregación de puertos NetFlow ToS Proto" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "Agregación de NetFlow ToS AS" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Destino de la fuente NetFlow" +#~ msgid "SDRP" +#~ msgstr "DEGP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Destino de NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "Ruta IPv6" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Agregación de prefijos NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "Fragua IPv6" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Agregación de Prefijos de Destino NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Agregación de prefijos de origen NetFlow" +#~ msgid "RSVP" +#~ msgstr "RSVP" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Agregación de puertos NetFlow Proto" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Agregación de NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow versión 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow versión 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow versión 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNXT" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow versión 1" +#~ msgid "IPv6-Opts" +#~ msgstr "Opciones IPv6" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d Minutos" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minuto" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Días" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Incluir índice" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Parámetros del informe" +#~ msgid "MTP" +#~ msgstr "PPM" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Nota:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Destino Puerto(s)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(por ejemplo, -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Limitaciones del filtro de flujo" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Selecciona uno de los Temas para tu Cacti." +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Completamente en el período de tiempo especificado" +#~ msgid "Src Prefix" +#~ msgstr "Prefijo Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Hora de inicio en el período de tiempo especificado" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Hora final en el período de tiempo especificado" +#~ msgid "Src Port" +#~ msgstr "Puerto Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Cualquier parte en un período de tiempo específico" +#~ msgid "End Date" +#~ msgstr "Fecha de finalización" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Lleno (Catalizador)" +#~ msgid "Filter Type" +#~ msgstr "Nombre del filtro" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Agregación de prefijos" +#~ msgid "View" +#~ msgstr "Vista" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Agregación de Prefijos de Destino" +#~ msgid "Defaults" +#~ msgstr "Resetear campos por defecto" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Agregación de prefijos de origen" +#~ msgid "Save As" +#~ msgstr "Exportar" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Agregación de puertos de protocolo" +#~ msgid "Filter Data" +#~ msgstr "Nombre del filtro" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "Nivel de Agregación" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " Se permiten múltiples entradas de campo, separadas por comas, en los campos anteriores. Un signo menos (-) negará una entrada (por ejemplo -80 para Puerto, significaría cualquier Puerto menos 80)." #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 línea con etiquetas" +#~ msgid "New Query" +#~ msgstr "Nueva consulta" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Prefijo" +#~ msgid "Update" +#~ msgstr "Actualizar" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "Filtro guardado" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Interface arriba" +#~ msgid "Filter Settings Saved" +#~ msgstr "Opciones de filtro guardadas" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filtro Actualizado" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filtro Actualizado" +#~ msgid "Interface" +#~ msgstr "Interface arriba" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Opciones de filtro guardadas" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtro guardado" +#~ msgid "Prefix" +#~ msgstr "Prefijo" #, fuzzy -#~ msgid "Update" -#~ msgstr "Actualizar" +#~ msgid "1 Line with Tags" +#~ msgstr "1 línea con etiquetas" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nueva consulta" +#~ msgid "AS Aggregation" +#~ msgstr "Nivel de Agregación" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " Se permiten múltiples entradas de campo, separadas por comas, en los campos anteriores. Un signo menos (-) negará una entrada (por ejemplo -80 para Puerto, significaría cualquier Puerto menos 80)." +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Agregación de puertos de protocolo" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Nombre del filtro" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Agregación de prefijos de origen" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Exportar" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Agregación de Prefijos de Destino" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Resetear campos por defecto" +#~ msgid "Prefix Aggregation" +#~ msgstr "Agregación de prefijos" #, fuzzy -#~ msgid "View" -#~ msgstr "Vista" +#~ msgid "Full (Catalyst)" +#~ msgstr "Lleno (Catalizador)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Nombre del filtro" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Cualquier parte en un período de tiempo específico" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Fecha de finalización" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Hora final en el período de tiempo especificado" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Puerto Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Hora de inicio en el período de tiempo especificado" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Completamente en el período de tiempo especificado" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Prefijo Src" +#~ msgid "Select One" +#~ msgstr "Selecciona uno de los Temas para tu Cacti." #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Limitaciones del filtro de flujo" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(por ejemplo, -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Destino Puerto(s)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Nota:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Parámetros del informe" #, fuzzy -#~ msgid "MTP" -#~ msgstr "PPM" +#~ msgid "Include if:" +#~ msgstr "Incluir índice" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Días" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Minuto" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d Minutos" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow versión 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "Opciones IPv6" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow versión 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNXT" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow versión 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow versión 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Agregación de NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Agregación de puertos NetFlow Proto" #, fuzzy -#~ msgid "BNA" -#~ msgstr "ARN" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Agregación de prefijos de origen NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Agregación de Prefijos de Destino NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "RSVP" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Agregación de prefijos NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Destino de NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "Fragua IPv6" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Destino de la fuente NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "Ruta IPv6" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "DEGP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "Agregación de NetFlow ToS AS" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "Agregación de puertos NetFlow ToS Proto" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Agregación de Prefijos de Fuente NetFlow ToS" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "Agregación de Prefijos de Destino NetFlow ToS" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Agregación de Prefijos NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Agregación de puertos de prefijo NetFlow ToS" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools etiquetado versión 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Desactivado)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Máximo)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Directorio de backup de archivos RRD" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MÉRITO-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Directorio en el que fluyen estos dispositivos. Este directorio debe estar en la ruta del directorio de flujo. No pongas el camino completo aquí. Además, no es que si cambia la ruta, todos los ajustes predefinidos del archivador para usarla tendrán que ser guardados de nuevo." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nidificación" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Estructura de directorios que se utilizará para los flujos de este dispositivo." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Versión NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Versión del protocolo NetFlow utilizada por el dispositivo." #, fuzzy -#~ msgid "RDP" -#~ msgstr "PDR" +#~ msgid "Compression Level" +#~ msgstr "Nivel de compresión" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "HOJA-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Nivel de compresión de los archivos de flujo. Una mayor compresión ahorra espacio pero utiliza más CPU para almacenar y recuperar los resultados." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "HOJA-1" +#~ msgid "Rotation" +#~ msgstr "Rotación" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Con qué frecuencia crear un nuevo archivo de flujo." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Vencimiento" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Cuánto tiempo para mantener sus archivos de flujo." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PMR" +#~ msgid "Version" +#~ msgstr "Versión" #, fuzzy -#~ msgid "HMP" -#~ msgstr "PMH" +#~ msgid "Compression" +#~ msgstr "Compresión" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Caducar cuentas inactivas" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Dispositivos" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Gestionar oyentes" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Ruta binaria de las herramientas de flujo" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "El camino hacia su binario flow-cat, flow-filter y flow-stat." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Directorio de trabajo de Flow Tools" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Esta es la ruta a un directorio temporal para hacer el trabajo." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Directorio de Flujos" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Esta es la ruta para basar la ruta de la estructura de carpetas de flujo." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "El método por el cual desea resolver los nombres de host." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Usar Servidor Local" #, fuzzy -#~ msgid "CBT" -#~ msgstr "TCC" +#~ msgid "Use DNS Server Below" +#~ msgstr "Use el servidor DNS a continuación" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "No Resolver DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Servidor DNS alternativo" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Este es el servidor DNS utilizado para resolver nombres." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Nombres de dominio en tira" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "Tiempo agotado de Ping ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Una lista delimitada por comas de los nombres de dominio que se deben quitar del dominio." #, fuzzy -#~ msgid "UDP" -#~ msgstr "Ping UDP" +#~ msgid "New Flow" +#~ msgstr "Nuevo Flujo" #, fuzzy -#~ msgid "TCP" -#~ msgstr "El puerto UDP/TCP para consultar al agente SNMP." +#~ msgid "Select a Filter to display data" +#~ msgstr "Imprimir informes" diff --git a/locales/po/fr-FR.po b/locales/po/fr-FR.po index e75d468..b0f5fb1 100644 --- a/locales/po/fr-FR.po +++ b/locales/po/fr-FR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-05-29 15:13+0000\n" "Last-Translator: Olivier VOGEL \n" "Language-Team: French \n" @@ -58,13 +58,13 @@ msgstr "Port source UDP/TCP" msgid "UDP/TCP Port" msgstr "Port UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP source" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Destination IP" @@ -99,13 +99,13 @@ msgstr "Interface de sortie" msgid "Input/Output Interface" msgstr "Interface d'entrée/sortie" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Script/source utilisé pour collecter les données de cette source de donnée." -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Branche de destintation :" @@ -120,7 +120,7 @@ msgstr "Source/Destination AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Préfixe source" @@ -194,7 +194,7 @@ msgstr "Aucune limite" msgid "%s Bytes" msgstr "octets %s Octets" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Tout" @@ -208,7 +208,7 @@ msgstr "Port(s) source(s)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Flux" @@ -217,8 +217,8 @@ msgstr "Flux" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Octets" @@ -227,8 +227,8 @@ msgstr "Octets" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Paquets" @@ -244,18 +244,18 @@ msgstr "Destination IP" msgid "Port" msgstr "Port" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Dest IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Adresse courriel" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Version du protocole supporté par le serveur." @@ -280,290 +280,295 @@ msgstr "CGU" msgid "Destingation Prefix" msgstr "Préfixe de destination" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "AANB" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP source" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Destination IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Port(s) source(s)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Destination IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Heure de début" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Heure de fin" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Actif" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pqt" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Drapeaux" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP source" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Destination IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Supprimer les filtres" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtre" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtre" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Auditeur" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Préréglages" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Rapport : [nouveau]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Imprimé :" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Statistiques" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Rapports statistiques" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Imprimer les rapports" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Gérer les horaires" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Résoudre les adresses :" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Résoudre les adresses :" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Oui" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Non" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Zone de tri :" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Octets minimum :" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protocoles" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protocoles" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Drapeaux TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Champs PEF" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Port(s) source(s)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Interface source" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Port de destination" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Interface Dest" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -642,33 +647,33 @@ msgstr "Périphérique[nouveau]" msgid "FlowView Listeners" msgstr "Écouteuses FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 msgid "Search" msgstr "Rechercher" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Go" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Définir/Rafraîchir les filtres" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Effacer" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Supprimer les filtres" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Auditeurs" @@ -747,33 +752,37 @@ msgstr "Cliquez sur'Continuer' pour activer la (les) annexe(s) suivante(s)." msgid "You must select at least one Filter." msgstr "Vous devez sélectionner au moins un appareil." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Filtres d'écoulement" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filtres" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 msgid "Default" msgstr "Défaut" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Nom du filtre" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Résolution du nom d'hôte" @@ -824,7 +833,7 @@ msgstr "Nouveau Programme" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Saisissez un titre de rapport pour la planification FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Activé" @@ -899,18 +908,22 @@ msgstr "Rapport : [Modifier : %s]" msgid "Report: [new]" msgstr "Rapport : [nouveau]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Sélecteur de date de démarrage" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Horaires FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Planifications" @@ -920,22 +933,22 @@ msgstr "Planifications" msgid "Schedule Title" msgstr "Titre de la planification" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Intervalle" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Date de début" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Prochain envoi" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "e-mail" @@ -955,25 +968,20 @@ msgstr "Rapport : [Modifier : %s]" msgid "Filter: [new]" msgstr "Rapport : [nouveau]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Imprimer les rapports" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1073,338 +1081,354 @@ msgstr "Imprimer les rapports" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Personnalisé" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Sélecteur de date de fin" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Afficher / Masquer" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tableau" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Barre d'octets" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Barre de paquets" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Barre d'écoulement" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Inconnu" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Flux net - % en" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Nouveau flux" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "octets %s Octets" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "octets %s Octets" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Script/source utilisé pour collecter les données de cette source de donnée." -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Script/source utilisé pour collecter les données de cette source de donnée." -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Port de destination" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "RQV" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Port de destination" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Préfixe de destination" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Paquets" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Statistiques sommaires" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Répartition de la taille des paquets IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Paquets par distribution de débit (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Octets par répartition de débit (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Distribution du temps d'écoulement (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Vous devez sélectionner un rapport statistique ou un rapport imprimé !" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Vous ne devez sélectionner qu'un rapport statistique ou un rapport imprimé (pas les deux) !" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Dates non valables, la date et l'heure de fin sont antérieures à la date et à l'heure de début !" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "IP invalide pour l'adresse source!
(Doit être sous la forme de'192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sous-réseau invalide pour l'adresse source!
(Doit être sous la forme de'192.168.0.1/255.255.255.255.0' ou'192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "IP invalide pour l'adresse de destination!
(Doit être sous la forme de'192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sous-réseau invalide pour l'adresse de destination!
(Doit être sous la forme de'192.168.0.1/255.255.255.255.0' ou'192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Valeur incorrecte pour l'interface source !" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Valeur incorrecte pour le port source ! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Valeur incorrecte pour Source AS ! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Valeur incorrecte pour l'interface de destination !" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Valeur incorrecte pour le port de destination ! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Valeur incorrecte pour Destination AS ! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Valeur incorrecte pour le protocole ! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Valeur incorrecte pour TCP Flag ! (ex : 0x1b ou 0x1b/SA ou SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Valeur incorrecte pour les octets de coupure !" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Valeur incorrecte pour les lignes de coupure !" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Valeur incorrecte pour la zone de tri !" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Diagramme FlowView pour %s Type est %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Max Flows :" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Barre de paquets" @@ -1419,721 +1443,733 @@ msgstr "Plugin -> Flow Viewer" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Le filtre a été supprimé" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Le filtre a été mis à jour" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Visualiseur d'écoulement" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Voir" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Sauvegarder" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Editer)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Actions" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d semaine" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d semaines" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d mois" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d mois" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d année" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Divers" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Une liste délimitée par des virgules de noms de domaine à supprimer du domaine." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Noms de domaine en bandelettes" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "C'est le serveur DNS utilisé pour résoudre les noms." +#~ msgid "ICMP" +#~ msgstr "CIPD" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Serveur DNS alternatif" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Ne résolvez pas les DNS" +#~ msgid "GGP" +#~ msgstr "BPO" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Utiliser le serveur DNS ci-dessous" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Utiliser le serveur local" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "La méthode par laquelle vous souhaitez résoudre les noms d'hôtes." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "C'est le chemin d'accès pour baser le chemin de votre structure de dossier de flux." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Répertoire des flux" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "C'est le chemin vers un répertoire temporaire pour faire le travail." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Répertoire de travail des outils de flux" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Le chemin vers votre flow-cat, flow-filter, et flow-stat binaire." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Outils d'écoulement Chemin binaire" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Gérer les auditeurs" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Équipements" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Expire" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Compression" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Version" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Combien de temps pour conserver vos fichiers de flux." +#~ msgid "HMP" +#~ msgstr "PGH" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Expiration" +#~ msgid "PRM" +#~ msgstr "PMR" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Combien de fois faut-il créer un nouveau fichier de déroulement ?" +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotation" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Niveau de compression des fichiers de flux. Une compression plus élevée permet d'économiser de l'espace, mais utilise plus de CPU pour stocker et récupérer les résultats." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Niveau de compression" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "NetFlow Version de protocole utilisée par l'appareil." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Version NetFlow" +#~ msgid "RDP" +#~ msgstr "PDR" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Structure de répertoire qui sera utilisée pour les flux de cet appareil." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nidification" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Répertoire dans lequel se trouvent les flux de ces périphériques. Ce répertoire doit se trouver dans le chemin Flow Directory. Ne mettez pas le chemin complet ici. Aussi, non pas que si vous changez le chemin d'accès, tous les réglages prédéfinis du filer pour l'utiliser devront être sauvegardés à nouveau." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Répertoire" +#~ msgid "MFE-NSP" +#~ msgstr "EMF-PSN" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (le plus élevé)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Désactivé)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools version 5 étiquetée" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS Préfixe NetFlow ToS Agrégation de ports" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Agrégation de préfixes NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "Agrégation des préfixes de destination NetFlow ToS" +#~ msgid "DDP" +#~ msgstr "PDD" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Agrégation du préfixe source NetFlow ToS" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS ProtoS Proto Port Aggregation" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Aggregation" +#~ msgid "IL" +#~ msgstr "VA" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Destination de la source NetFlow" +#~ msgid "SDRP" +#~ msgstr "PRSD" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Destination NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Route" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Agrégation des préfixes NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Agrégation des préfixes de destination NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Agrégation de préfixes de source NetFlow" +#~ msgid "RSVP" +#~ msgstr "RSVP" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Agrégation de ports Proto NetFlow" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS Agrégation" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow version 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow version 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow version 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow version 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Options" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d minutes" +#~ msgid "RSPF" +#~ msgstr "CPRS" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "d Minute %d Minute" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Jours" +#~ msgid "EIGRP" +#~ msgstr "GIERP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Inclure si :" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Paramètres du rapport" +#~ msgid "MTP" +#~ msgstr "PMT" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Note :" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Port(s) de destination" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(par ex. -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Contraintes du filtre d'écoulement" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Sélectionnez-en un" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Entièrement dans un intervalle de temps spécifié" +#~ msgid "Src Prefix" +#~ msgstr "Préfixe Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Heure de début dans l'intervalle de temps spécifié" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Heure de fin dans l'intervalle de temps spécifié" +#~ msgid "Src Port" +#~ msgstr "Port Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "N'importe quelle partie d'une période de temps spécifiée" +#~ msgid "End Date" +#~ msgstr "Date de fin" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Complet (Catalyseur)" +#~ msgid "Filter Type" +#~ msgstr "Nom du filtre" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Agrégation des préfixes" +#~ msgid "View" +#~ msgstr "Voir" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Agrégation des préfixes de destination" +#~ msgid "Defaults" +#~ msgstr "Défaut" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Agrégation du préfixe source" +#~ msgid "Save As" +#~ msgstr "Enregistrer sous" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Agrégation des ports de protocole" +#~ msgid "Filter Data" +#~ msgstr "Nom du filtre" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS Agrégation" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " Les entrées multiples, séparées par des virgules, sont permises dans les champs ci-dessus. Un signe moins (-) annule une entrée (par exemple -80 pour Port, signifie n'importe quel port sauf 80)." #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 Ligne avec les Tags" +#~ msgid "New Query" +#~ msgstr "Nouvelle requête" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Préfixe" +#~ msgid "Update" +#~ msgstr "Mettre à jour" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "Filtre sauvegardé" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Interface" +#~ msgid "Filter Settings Saved" +#~ msgstr "Paramètres du filtre enregistrés" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filtre mis à jour" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filtre mis à jour" +#~ msgid "Interface" +#~ msgstr "Interface" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Paramètres du filtre enregistrés" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtre sauvegardé" +#~ msgid "Prefix" +#~ msgstr "Préfixe" #, fuzzy -#~ msgid "Update" -#~ msgstr "Mettre à jour" +#~ msgid "1 Line with Tags" +#~ msgstr "1 Ligne avec les Tags" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nouvelle requête" +#~ msgid "AS Aggregation" +#~ msgstr "AS Agrégation" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " Les entrées multiples, séparées par des virgules, sont permises dans les champs ci-dessus. Un signe moins (-) annule une entrée (par exemple -80 pour Port, signifie n'importe quel port sauf 80)." +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Agrégation des ports de protocole" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Nom du filtre" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Agrégation du préfixe source" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Enregistrer sous" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Agrégation des préfixes de destination" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Défaut" +#~ msgid "Prefix Aggregation" +#~ msgstr "Agrégation des préfixes" #, fuzzy -#~ msgid "View" -#~ msgstr "Voir" +#~ msgid "Full (Catalyst)" +#~ msgstr "Complet (Catalyseur)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Nom du filtre" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "N'importe quelle partie d'une période de temps spécifiée" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Date de fin" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Heure de fin dans l'intervalle de temps spécifié" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Port Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Heure de début dans l'intervalle de temps spécifié" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Entièrement dans un intervalle de temps spécifié" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Préfixe Src" +#~ msgid "Select One" +#~ msgstr "Sélectionnez-en un" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Contraintes du filtre d'écoulement" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(par ex. -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Port(s) de destination" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Note :" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Paramètres du rapport" #, fuzzy -#~ msgid "MTP" -#~ msgstr "PMT" +#~ msgid "Include if:" +#~ msgstr "Inclure si :" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Jours" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "GIERP" +#~ msgid "%d Minute" +#~ msgstr "d Minute %d Minute" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d minutes" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "CPRS" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow version 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Options" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow version 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow version 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow version 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS Agrégation" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Agrégation de ports Proto NetFlow" #, fuzzy -#~ msgid "BNA" -#~ msgstr "AANB" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Agrégation de préfixes de source NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Agrégation des préfixes de destination NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "RSVP" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Agrégation des préfixes NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Destination NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Destination de la source NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "PRSD" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Aggregation" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS ProtoS Proto Port Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "VA" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Agrégation du préfixe source NetFlow ToS" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "Agrégation des préfixes de destination NetFlow ToS" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Agrégation de préfixes NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "PDD" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS Préfixe NetFlow ToS Agrégation de ports" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools version 5 étiquetée" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Désactivé)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (le plus élevé)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Répertoire" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Répertoire dans lequel se trouvent les flux de ces périphériques. Ce répertoire doit se trouver dans le chemin Flow Directory. Ne mettez pas le chemin complet ici. Aussi, non pas que si vous changez le chemin d'accès, tous les réglages prédéfinis du filer pour l'utiliser devront être sauvegardés à nouveau." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "EMF-PSN" +#~ msgid "Nesting" +#~ msgstr "Nidification" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Structure de répertoire qui sera utilisée pour les flux de cet appareil." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Version NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "NetFlow Version de protocole utilisée par l'appareil." #, fuzzy -#~ msgid "RDP" -#~ msgstr "PDR" +#~ msgid "Compression Level" +#~ msgstr "Niveau de compression" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Niveau de compression des fichiers de flux. Une compression plus élevée permet d'économiser de l'espace, mais utilise plus de CPU pour stocker et récupérer les résultats." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Rotation" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Combien de fois faut-il créer un nouveau fichier de déroulement ?" #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Expiration" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Combien de temps pour conserver vos fichiers de flux." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PMR" +#~ msgid "Version" +#~ msgstr "Version" #, fuzzy -#~ msgid "HMP" -#~ msgstr "PGH" +#~ msgid "Compression" +#~ msgstr "Compression" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Expire" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Équipements" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Gérer les auditeurs" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Outils d'écoulement Chemin binaire" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Le chemin vers votre flow-cat, flow-filter, et flow-stat binaire." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Répertoire de travail des outils de flux" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "C'est le chemin vers un répertoire temporaire pour faire le travail." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Répertoire des flux" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "C'est le chemin d'accès pour baser le chemin de votre structure de dossier de flux." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "La méthode par laquelle vous souhaitez résoudre les noms d'hôtes." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Utiliser le serveur local" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Utiliser le serveur DNS ci-dessous" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Ne résolvez pas les DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Serveur DNS alternatif" #, fuzzy -#~ msgid "GGP" -#~ msgstr "BPO" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "C'est le serveur DNS utilisé pour résoudre les noms." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Noms de domaine en bandelettes" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "CIPD" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Une liste délimitée par des virgules de noms de domaine à supprimer du domaine." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Nouveau flux" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Imprimer les rapports" diff --git a/locales/po/he-IL.po b/locales/po/he-IL.po index 5c21b09..cad3e12 100644 --- a/locales/po/he-IL.po +++ b/locales/po/he-IL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:06-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / יציאת מקור TCP" msgid "UDP/TCP Port" msgstr "UDP / יציאת TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "מקור IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "כתובת IP יעד" @@ -98,13 +98,13 @@ msgstr "ממשק פלט" msgid "Input/Output Interface" msgstr "ממשק קלט / פלט" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "מקור AS" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "יעד AS" @@ -119,7 +119,7 @@ msgstr "מקור / יעד AS" msgid "IP ToS" msgstr "IP" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "קידומת מקור" @@ -193,7 +193,7 @@ msgstr "אין גבול" msgid "%s Bytes" msgstr "%s בתים" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "הכל" @@ -207,7 +207,7 @@ msgstr "יציאות מקור (ים)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "זורם" @@ -216,8 +216,8 @@ msgstr "זורם" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "בייטים" @@ -226,8 +226,8 @@ msgstr "בייטים" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "מנות" @@ -243,18 +243,18 @@ msgstr "כתובת IP יעד" msgid "Port" msgstr "פורט" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "כתובת IP של Dest" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "כתובות דוא\"ל" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "פרוטוקול" @@ -279,290 +279,295 @@ msgstr "תנאי שירות" msgid "Destingation Prefix" msgstr "קידומת יעד" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "מקור IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "כתובת IP יעד" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "יציאות מקור (ים)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "כתובת IP יעד" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "שעת התחלה" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "שעת סיום" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "פעיל" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / PK" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "דגלים" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "מקור IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "כתובת IP יעד" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "מחיקת מסננים" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "סינון" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "סינון" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "מקשיב" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "קבועים מראש" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "דוח: [חדש]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "נדפס:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "סטטיסטיקות" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "דוחות סטטיסטיים" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "הדפס דוחות" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "ניהול לוחות זמנים" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "פתרון כתובות:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "פתרון כתובות:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "כן" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "לא" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "שדה מיון:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "בתים מינימליים:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "פרוטוקולים" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "פרוטוקולים" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "דגלי TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "שדות TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "יציאות מקור (ים)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "ממשק המקור" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "נמל דסט" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "ממשק Dest" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "מכשיר [חדש]" msgid "FlowView Listeners" msgstr "FlowView מאזינים" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "חיפוש" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "עבור" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "הגדר / רענן מסננים" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "נקה" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "מחיקת מסננים" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "מאזינים" @@ -750,34 +755,38 @@ msgstr "לחץ על 'המשך' כדי להפעיל את התזמונים הבא msgid "You must select at least one Filter." msgstr "עליך לבחור לפחות מכשיר אחד." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "מסננים זרימה" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "מסננים" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "ברירת מחדל" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "שם הסינון" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "פתרון שם המארח" @@ -828,7 +837,7 @@ msgstr "לוח זמנים חדש" msgid "Enter a Report Title for the FlowView Schedule." msgstr "הזן כותרת דוח עבור לוח הזמנים של FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "מאופשר" @@ -903,18 +912,22 @@ msgstr "דוח: [עריכה: %s]" msgid "Report: [new]" msgstr "דוח: [חדש]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "בורר תאריך התחלה" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "לוחות זמנים של זרימה" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "תזמונים" @@ -924,22 +937,22 @@ msgstr "תזמונים" msgid "Schedule Title" msgstr "כותרת התזמון" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "מרווח" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "תאריך התחלה" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "שלח" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "אימייל" @@ -959,25 +972,20 @@ msgstr "דוח: [עריכה: %s]" msgid "Filter: [new]" msgstr "דוח: [חדש]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "הדפס דוחות" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "הדפס דוחות" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "מותאם אישית" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "סיים את בורר התאריכים" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "הצג הסתר" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "טבלה" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "סרגל בתים" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "בר Packets" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "תזרים בר" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "לא ידוע" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netflow -%" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "זרימה חדשה" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s בתים" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s בתים" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "מקור AS" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "מקור AS" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "נמל דסט" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "נמל דסט" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "קידומת Dest" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "מנות" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "סיכום סטטיסטיקות" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "התפלגות גודל מנות IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "מנות לכל התפלגות זרימה (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "אוקטטים לכל התפלגות זרימה (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "התפלגות זמן זרימה (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "עליך לבחור דוח סטטיסטי או דוח מודפס!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "עליך לבחור רק דוח סטטיסטי או דוח מודפס (לא שניהם)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "תאריכים לא חוקיים, תאריך / שעה סיום מוקדם יותר מאשר תאריך התחלה / זמן!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "כתובת IP לא חוקית עבור כתובת המקור!
(חייב להיות בצורה של '192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "תת רשת לא חוקית עבור כתובת המקור!
(חייב להיות בצורה של '192.168.0.1/255.255.255.0' או '192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "כתובת IP לא חוקית עבור כתובת היעד!
(חייב להיות בצורה של '192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "תת רשת לא חוקית עבור כתובת היעד!
(חייב להיות בצורה של '192.168.0.1/255.255.255.0' או '192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "ערך לא חוקי עבור ממשק המקור!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "ערך לא חוקי עבור יציאת מקור! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "ערך לא חוקי עבור מקור AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "ערך לא חוקי עבור ממשק היעד!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "ערך לא חוקי עבור נמל יעד! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "ערך לא חוקי עבור יעד AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "ערך לא חוקי עבור פרוטוקול! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "ערך לא חוקי עבור TCP דגל! (לדוגמה: 0x1b או 0x1b / SA או SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "ערך לא חוקי עבור אוקטס Cutoff!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "ערך לא חוקי עבור קווי חיתוך!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "ערך לא חוקי עבור שדה מיון!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "תרשים זרימה עבור סוג %s הוא %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "זרימות מקסיות:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "בר Packets" @@ -1423,721 +1447,733 @@ msgstr "- מציג זרימה" msgid "Plugin -> Flow Admin" msgstr "- מנהל זרימה" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "המסנן נמחק" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "המסנן עודכן" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "תזרים" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "מציג זרימה" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "הצג" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "שמור" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(עריכה)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "פעולות" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d בשבוע" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d שבועות" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d חודש" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% חודשים" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d שנה" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "שונות" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "רשימה מופרדת בפסיקים של שמות תחומים שתוסר מהרשת." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "רצועת שמות מתחם" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "זהו שרת ה- DNS המשמש לפתרון שמות." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "שרת DNS חלופי" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "אין לפתור DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "השתמש שרת DNS להלן" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "השתמש בשרת מקומי" +#~ msgid "ST" +#~ msgstr "רחוב" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "השיטה שבאמצעותה ברצונך לפתור שמות מארחים." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "זהו הנתיב לבסיס הנתיב של מבנה תיקיית הזרימה שלך." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "מדריך זרימה" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "זה הנתיב לספרייה זמנית לעשות עבודה." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "זרימת עבודה מדריך עבודה" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "הנתיב אל זרימת הזרימה, הזרימה והסינון בינארי." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "זרימת כלים נתיב בינארי" +#~ msgid "ARGUS" +#~ msgstr "ארגוס" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "ניהול מאזינים" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "ניתן להתנתק מכל ההתקנים האחרים, כגון טלפון נייד או מחשב ציבורי, על ידי לחיצה על כפתור התנתקות מכל ההתקנים האחרים." +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "תאריך פקיעה" +#~ msgid "CHAOS" +#~ msgstr "אי סדר" #, fuzzy -#~ msgid "Compression" -#~ msgstr "דחיסה" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "גרסה" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "כמה זמן לשמור על קבצי הזרימה שלך." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "תאריך תפוגה" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "כמה פעמים ליצור קובץ זרימה חדש." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "סיבוב" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "רמת דחיסה של קבצי זרימה. דחיסה גבוהה יותר חוסכת מקום אבל משתמשת יותר CPU לאחסון ולאחזור תוצאות." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "רמת דחיסה" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "גרסת פרוטוקול NetFlow המשמש את ההתקן." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "גרסה NetFlow" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "מבנה ספריות אשר ישמש לתזרים עבור מכשיר זה." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "קינון" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "ספריה שבה זורמים התקנים אלה נמצאת בספריה זו. הנתיב חייב להיות בנתיב Directory Flow. אל תשים את הנתיב המלא כאן. כמו כן, לא כי אם תשנה את הנתיב, כל הגדרת filer מוגדר מראש כדי להשתמש בו יהיה צורך resaved." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "אינדקס שרותים ועסקים" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (הגבוה ביותר)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (מושבת)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "תזרים כלי מתויג גרסה 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "צומת יציאה ל - NetFlow" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "צומת קידומת ל - NetFlow" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "צומת קידומת יעד ל - NetFlow" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "קירוב קידומת מקור ה- NetFlow" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "צומת יציאת NetFlow ToS פרוטו" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "צבירה של NetFlow" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "זרימה מלאה NetFlow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "יעד מקור NetFlow" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "יעד NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "נתיב IPv6" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "צומת קידומת NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "צומת קידומת יעד NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "קיבוץ קידומת מקור NetFlow" +#~ msgid "RSVP" +#~ msgstr "אישור הגהה" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "צומת נמל NetFlow" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "צבירה של NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "גרסה 7 של NetFlow" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "גרסה 6 של NetFlow" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "גרסה 5 של NetFlow" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "גרסת NetFlow 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "דקות %d" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d דקות" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d ימים" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "לכלול אם:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "דווח על פרמטרים" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "הערה:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Dest Port (s)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(למשל, -0x0b / 0x0f)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "זרימת מסננים אילוצים" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "אנא בחר באחת האפשרויות הבאות" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "לגמרי בספאן זמן מוגדר" +#~ msgid "Src Prefix" +#~ msgstr "קידומת SRC" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "שעת התחלה בפרק זמן מוגדר" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "שעת סיום בפרק זמן מוגדר" +#~ msgid "Src Port" +#~ msgstr "נמל סרק" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "כל חלק בפרק זמן מוגדר" +#~ msgid "End Date" +#~ msgstr "תאריך סיום" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "מלא (קטליסט)" +#~ msgid "Filter Type" +#~ msgstr "שם הסינון" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "קידומת קידומות" +#~ msgid "View" +#~ msgstr "הצג" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "צומת קידומת יעד" +#~ msgid "Defaults" +#~ msgstr "הגדרות (ברירת המחדל" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "צומת קידומת מקור" +#~ msgid "Save As" +#~ msgstr "שמור כ" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "צבירת נמל פרוטוקול" +#~ msgid "Filter Data" +#~ msgstr "שם הסינון" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "צבירה" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "רשומות שדות מרובות, מופרדות בפסיקים, מותרות בשדות שמעל. סימן מינוס (-) יבטל כניסה (למשל -80 עבור Port, פירושו כל יציאה, אך 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 עם תגים" +#~ msgid "New Query" +#~ msgstr "שאילתה חדשה" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "קידומת" +#~ msgid "Update" +#~ msgstr "עדכון" #, fuzzy -#~ msgid "AS" -#~ msgstr "כפי ש" +#~ msgid "Filter Saved" +#~ msgstr "המסנן נשמר" #, fuzzy -#~ msgid "Interface" -#~ msgstr "ממשק" +#~ msgid "Filter Settings Saved" +#~ msgstr "הגדרות סינון נשמרו" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "מסנן עודכן" #, fuzzy #~ msgid "IP" #~ msgstr "כתובת IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "מסנן עודכן" +#~ msgid "Interface" +#~ msgstr "ממשק" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "הגדרות סינון נשמרו" +#~ msgid "AS" +#~ msgstr "כפי ש" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "המסנן נשמר" +#~ msgid "Prefix" +#~ msgstr "קידומת" #, fuzzy -#~ msgid "Update" -#~ msgstr "עדכון" +#~ msgid "1 Line with Tags" +#~ msgstr "1 עם תגים" #, fuzzy -#~ msgid "New Query" -#~ msgstr "שאילתה חדשה" +#~ msgid "AS Aggregation" +#~ msgstr "צבירה" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "רשומות שדות מרובות, מופרדות בפסיקים, מותרות בשדות שמעל. סימן מינוס (-) יבטל כניסה (למשל -80 עבור Port, פירושו כל יציאה, אך 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "צבירת נמל פרוטוקול" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "שם הסינון" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "צומת קידומת מקור" #, fuzzy -#~ msgid "Save As" -#~ msgstr "שמור כ" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "צומת קידומת יעד" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "הגדרות (ברירת המחדל" +#~ msgid "Prefix Aggregation" +#~ msgstr "קידומת קידומות" #, fuzzy -#~ msgid "View" -#~ msgstr "הצג" +#~ msgid "Full (Catalyst)" +#~ msgstr "מלא (קטליסט)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "שם הסינון" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "כל חלק בפרק זמן מוגדר" #, fuzzy -#~ msgid "End Date" -#~ msgstr "תאריך סיום" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "שעת סיום בפרק זמן מוגדר" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "נמל סרק" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "שעת התחלה בפרק זמן מוגדר" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "לגמרי בספאן זמן מוגדר" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "קידומת SRC" +#~ msgid "Select One" +#~ msgstr "אנא בחר באחת האפשרויות הבאות" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "זרימת מסננים אילוצים" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(למשל, -0x0b / 0x0f)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Dest Port (s)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "הערה:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "דווח על פרמטרים" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "לכלול אם:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d ימים" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d דקות" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "דקות %d" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "גרסת NetFlow 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-opts" +#~ msgid "NetFlow version 5" +#~ msgstr "גרסה 5 של NetFlow" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "גרסה 6 של NetFlow" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "גרסה 7 של NetFlow" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "צבירה של NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "צומת נמל NetFlow" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "קיבוץ קידומת מקור NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "צומת קידומת יעד NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "אישור הגהה" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "צומת קידומת NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "יעד NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "יעד מקור NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "נתיב IPv6" +#~ msgid "NetFlow Full Flow" +#~ msgstr "זרימה מלאה NetFlow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "צבירה של NetFlow" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "צומת יציאת NetFlow ToS פרוטו" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "קירוב קידומת מקור ה- NetFlow" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "צומת קידומת יעד ל - NetFlow" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "צומת קידומת ל - NetFlow" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "צומת יציאה ל - NetFlow" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "תזרים כלי מתויג גרסה 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (מושבת)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (הגבוה ביותר)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "אינדקס שרותים ועסקים" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "ספריה שבה זורמים התקנים אלה נמצאת בספריה זו. הנתיב חייב להיות בנתיב Directory Flow. אל תשים את הנתיב המלא כאן. כמו כן, לא כי אם תשנה את הנתיב, כל הגדרת filer מוגדר מראש כדי להשתמש בו יהיה צורך resaved." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "קינון" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "מבנה ספריות אשר ישמש לתזרים עבור מכשיר זה." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "גרסה NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "גרסת פרוטוקול NetFlow המשמש את ההתקן." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "רמת דחיסה" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "רמת דחיסה של קבצי זרימה. דחיסה גבוהה יותר חוסכת מקום אבל משתמשת יותר CPU לאחסון ולאחזור תוצאות." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "סיבוב" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "כמה פעמים ליצור קובץ זרימה חדש." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "תאריך תפוגה" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "כמה זמן לשמור על קבצי הזרימה שלך." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "גרסה" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "דחיסה" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "תאריך פקיעה" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "ניתן להתנתק מכל ההתקנים האחרים, כגון טלפון נייד או מחשב ציבורי, על ידי לחיצה על כפתור התנתקות מכל ההתקנים האחרים." #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "אי סדר" +#~ msgid "Manage Listeners" +#~ msgstr "ניהול מאזינים" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "זרימת כלים נתיב בינארי" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "הנתיב אל זרימת הזרימה, הזרימה והסינון בינארי." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ארגוס" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "זרימת עבודה מדריך עבודה" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "זה הנתיב לספרייה זמנית לעשות עבודה." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "מדריך זרימה" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "זהו הנתיב לבסיס הנתיב של מבנה תיקיית הזרימה שלך." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "השיטה שבאמצעותה ברצונך לפתור שמות מארחים." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "השתמש בשרת מקומי" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "השתמש שרת DNS להלן" #, fuzzy -#~ msgid "ST" -#~ msgstr "רחוב" +#~ msgid "Don't Resolve DNS" +#~ msgstr "אין לפתור DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "שרת DNS חלופי" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "זהו שרת ה- DNS המשמש לפתרון שמות." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "רצועת שמות מתחם" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "רשימה מופרדת בפסיקים של שמות תחומים שתוסר מהרשת." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "זרימה חדשה" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "הדפס דוחות" diff --git a/locales/po/hi-IN.po b/locales/po/hi-IN.po index a0105f4..456c4c7 100644 --- a/locales/po/hi-IN.po +++ b/locales/po/hi-IN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:09-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "यूडीपी / टीसीपी स्रोत पोर्ट" msgid "UDP/TCP Port" msgstr "यूडीपी / टीसीपी पोर्ट" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "स्रोत आईपी" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "लक्षित अंतरराष्ट्रीय कम्प्यूटर तंत्र प्रणाली नियमावली" @@ -98,13 +98,13 @@ msgstr "आउटपुट इंटरफ़ेस" msgid "Input/Output Interface" msgstr "इनपुट / आउटपुट इंटरफ़ेस" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "स्रोत ए.एस." -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "गंतव्य ए.एस." @@ -119,7 +119,7 @@ msgstr "स्रोत / गंतव्य एएस" msgid "IP ToS" msgstr "आईपी टो" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "स्रोत उपसर्ग" @@ -193,7 +193,7 @@ msgstr "कोई सीमा नहीं" msgid "%s Bytes" msgstr "% बाइट्स" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "所有" @@ -207,7 +207,7 @@ msgstr "स्रोत पोर्ट" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "प्रवाह" @@ -216,8 +216,8 @@ msgstr "प्रवाह" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "बाइट्स" @@ -226,8 +226,8 @@ msgstr "बाइट्स" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "पैकेट" @@ -243,18 +243,18 @@ msgstr "लक्षित अंतरराष्ट्रीय कम्प msgid "Port" msgstr "बंदरगाह" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "गंतव्य आईपी" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "ईमेल पता" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "मसविदा बनाना" @@ -279,290 +279,295 @@ msgstr "टीओएस" msgid "Destingation Prefix" msgstr "गंतव्य उपसर्ग" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "स्रोत आईपी" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "लक्षित अंतरराष्ट्रीय कम्प्यूटर तंत्र प्रणाली नियमावली" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "स्रोत पोर्ट" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "लक्षित अंतरराष्ट्रीय कम्प्यूटर तंत्र प्रणाली नियमावली" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "प्रारंभ समय" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "अंतिम समय" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "सक्रिय" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "बी / पी" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "टी" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "झंडे" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "स्रोत आईपी" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "लक्षित अंतरराष्ट्रीय कम्प्यूटर तंत्र प्रणाली नियमावली" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "साफ फिल्टर" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "छलनी " -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "छलनी " -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "श्रोता" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "प्रीसेट" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "रिपोर्ट: [नया]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "प्रिंट किया गया:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "सांख्यिकी:" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "सांख्यिकी रिपोर्ट" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "प्रिंट रिपोर्ट" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "अनुसूचियां प्रबंधित करें" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "पते का समाधान करें:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "पते का समाधान करें:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "हाँ" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "नहीं" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "फ़ील्ड को क्रमबद्ध करें:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "न्यूनतम बाइट्स:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "प्रोटोकॉल" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "प्रोटोकॉल" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "टीसीपी झंडे" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "टीओएस फील्ड्स" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "स्रोत पोर्ट" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "स्रोत इंटरफ़ेस" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "गंतव्य बंदरगाह" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "गंतव्य इंटरफ़ेस" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "गंतव्य के रूप में" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "डिवाइस [नया]" msgid "FlowView Listeners" msgstr "फ़्लो व्यू श्रोता" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "खोज" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "चले जाओ" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "सेट / फ़िल्टर ताज़ा करें" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "明确" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "साफ फिल्टर" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "श्रोताओं" @@ -750,34 +755,38 @@ msgstr "निम्न अनुसूची को सक्षम करन msgid "You must select at least one Filter." msgstr "आपके लिए कम से कम एक डिवाइस चुनना ज़रूरी है।" -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "प्रवाह फिल्टर" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "फिल्टर" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "चूक" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "फ़िल्टर का नाम" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "होस्टनाम रिज़ॉल्यूशन" @@ -828,7 +837,7 @@ msgstr "नई सारणी" msgid "Enter a Report Title for the FlowView Schedule." msgstr "फ़्लो व्यू शेड्यूल के लिए एक रिपोर्ट शीर्षक दर्ज करें।" -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "सक्षम" @@ -903,18 +912,22 @@ msgstr "रिपोर्ट: [संपादित करें: %s]" msgid "Report: [new]" msgstr "रिपोर्ट: [नया]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "प्रारंभ तिथि चयनकर्ता" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "फ़्लो व्यू शेड्यूल" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "अनुसूचियों" @@ -924,22 +937,22 @@ msgstr "अनुसूचियों" msgid "Schedule Title" msgstr "अनुसूची शीर्षक" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "मध्यान्तर" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "प्रारंभ दिनांक" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "अगला भेजें" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "ईमेल" @@ -959,25 +972,20 @@ msgstr "रिपोर्ट: [संपादित करें: %s]" msgid "Filter: [new]" msgstr "रिपोर्ट: [नया]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "प्रिंट रिपोर्ट" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "प्रिंट रिपोर्ट" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "रुचि अनुसरणीय" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "अंतिम तिथि चयनकर्ता" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "छुपा हुआ देखना" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "तालिका" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "बाइट्स बार" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "पैकेट बार" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "बार बहती है" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "अनजान" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "कैक्टि फ्लोव्यू" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "कुल प्रवाह - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "नया प्रवाह" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "% बाइट्स" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "% बाइट्स" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "स्रोत ए.एस." -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "स्रोत ए.एस." -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "गंतव्य के रूप में" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "गंतव्य बंदरगाह" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "गंतव्य बंदरगाह" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "गंतव्य स्थान" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "गंतव्य उपसर्ग" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "पैकेट" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "सारांश आँकड़े" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "आईपी पैकेट आकार वितरण (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "पैकेट प्रति प्रवाह वितरण (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "प्रति प्रवाह वितरण (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "प्रवाह समय वितरण (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "आपको एक सांख्यिकी रिपोर्ट या मुद्रित रिपोर्ट का चयन करना होगा!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "आपको केवल एक सांख्यिकी रिपोर्ट या मुद्रित रिपोर्ट (दोनों नहीं) का चयन करना होगा!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "अमान्य दिनांक, समाप्ति दिनांक / समय प्रारंभ दिनांक / समय से पहले है!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "स्रोत पते के लिए अमान्य IP!
('192.168.0.1' के रूप में होना चाहिए)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "स्रोत पते के लिए अमान्य सबनेट!
('192.168.0.1/255.255.255.0' या '192.168.0.1/24' के रूप में होना चाहिए)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "गंतव्य पते के लिए अमान्य IP!
('192.168.0.1' के रूप में होना चाहिए)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "गंतव्य पते के लिए अमान्य सबनेट!
('192.168.0.1/255.255.255.0' या '192.168.0.1/24' के रूप में होना चाहिए)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "स्रोत इंटरफ़ेस के लिए अमान्य मान!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "स्रोत पोर्ट के लिए अमान्य मान! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "स्रोत एएस के लिए अमान्य मान! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "गंतव्य इंटरफ़ेस के लिए अमान्य मान!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "गंतव्य पोर्ट के लिए अमान्य मान! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "गंतव्य के रूप में अमान्य मान! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "प्रोटोकॉल के लिए अमान्य मान! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "टीसीपी ध्वज के लिए अमान्य मान! (उदा: 0x1b या 0x1b / SA या SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "कटऑफ ओकटेट्स के लिए अमान्य मान!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "कटऑफ लाइन्स के लिए अमान्य मान!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "सॉर्ट फ़ील्ड के लिए अमान्य मान!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "%s प्रकार के लिए FlowView चार्ट %s है" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "अधिकतम प्रवाह:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "पैकेट बार" @@ -1423,721 +1447,733 @@ msgstr "प्लगइन -> प्रवाह दर्शक" msgid "Plugin -> Flow Admin" msgstr "प्लगइन -> प्रवाह व्यवस्थापक" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "फ़िल्टर हटा दिया गया है" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "फ़िल्टर अद्यतन किया गया है" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "प्रवाह दर्शक" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "देखें" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "सेव करें" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "संपादित करें" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "कार्रवाइयाँ" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d वीक" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% द वीक" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d महीना" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% d माह" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d वष" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "विविध" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "डोमेन से पट्टी करने के लिए डोमेन नामों की एक अल्पविराम सीमांकित सूची।" +#~ msgid "TCP" +#~ msgstr "टीसीपी" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "स्ट्रिप डोमेन नाम" +#~ msgid "UDP" +#~ msgstr "यूडीपी" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "यह DNS सर्वर है जिसका उपयोग नामों को हल करने के लिए किया जाता है।" +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "वैकल्पिक DNS सर्वर" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "डीएनएस को हल न करें" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "नीचे DNS सर्वर का उपयोग करें" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "स्थानीय सर्वर का उपयोग करें" +#~ msgid "ST" +#~ msgstr "अनुसूचित जनजाति" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "वह विधि जिससे आप होस्टनाम को हल करना चाहते हैं।" +#~ msgid "CBT" +#~ msgstr "सीबीटी" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "यह आपके प्रवाह फ़ोल्डर संरचना के पथ को आधार बनाने का मार्ग है।" +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "प्रवाह निर्देशिका" +#~ msgid "IGP" +#~ msgstr "आईजीपी" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "यह काम करने के लिए एक अस्थायी निर्देशिका का मार्ग है।" +#~ msgid "BBN-RCC-MON" +#~ msgstr "बीबीएन-आरसीसी-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "फ्लो टूल वर्क डायरेक्टरी" +#~ msgid "NVP-II" +#~ msgstr "NVP द्वितीय" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "आपके फ़्लो-कैट, फ़्लो-फ़िल्टर और फ़्लो-स्टेट बाइनरी का मार्ग।" +#~ msgid "PUP" +#~ msgstr "पिल्ला" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "प्रवाह उपकरण बाइनरी पथ" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "श्रोताओं को प्रबंधित करें" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "कोई उपकरण नहीं" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "समय सीमा समाप्त" +#~ msgid "CHAOS" +#~ msgstr "अराजकता" #, fuzzy -#~ msgid "Compression" -#~ msgstr "दबाव" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "संस्करण %s" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "कब तक अपने प्रवाह फ़ाइलों को रखने के लिए।" +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "समय सीमा समाप्ति" +#~ msgid "PRM" +#~ msgstr "पी आर एम" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "एक नई फ़्लो फ़ाइल बनाने के लिए कितनी बार।" +#~ msgid "XNS-IDP" +#~ msgstr "XNS-आईडीपी" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "रोटेशन" +#~ msgid "TRUNK-1" +#~ msgstr "ट्रंक -1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "प्रवाह फ़ाइलों का संपीड़न स्तर। उच्च संपीड़न स्थान बचाता है, लेकिन परिणामों को संग्रहीत और पुनर्प्राप्त करने के लिए अधिक CPU का उपयोग करता है।" +#~ msgid "TRUNK-2" +#~ msgstr "ट्रंक -2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "संपीड़न स्तर" +#~ msgid "LEAF-1" +#~ msgstr "लीफ -1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "डिवाइस द्वारा उपयोग किया गया नेटफ्लो प्रोटोकॉल संस्करण।" +#~ msgid "LEAF-2" +#~ msgstr "लीफ -2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "नेटफ्लो संस्करण" +#~ msgid "RDP" +#~ msgstr "आरडीपी" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "निर्देशिका संरचना जिसका उपयोग इस उपकरण के प्रवाह के लिए किया जाएगा।" +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "घोंसला करने की क्रिया" +#~ msgid "ISO-TP4" +#~ msgstr "आईएसओ TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "यह उपकरण प्रवाहित निर्देशिका में है। यह निर्देशिका प्रवाह निर्देशिका पथ में होना चाहिए। यहां पूरा रास्ता मत डालो। इसके अलावा, ऐसा नहीं है कि यदि आप पथ बदलते हैं, तो इसका उपयोग करने के लिए सभी पूर्वनिर्धारित फाइलर सेटअप को फिर से शुरू करना होगा।" +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "निर्देशिका" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-एनएसपी" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (उच्चतम)" +#~ msgid "MERIT-INP" +#~ msgstr "योग्यता-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (अक्षम)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "फ्लो-टूल्स ने संस्करण 5 को टैग किया" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "नेटफ्लो टो प्रीफिक्स पोर्ट एग्रीगेशन" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "नेटफ्लो टो प्रीफिक्स एग्रीगेशन" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "नेटफ्लो टोस डेस्टिनेशन प्रीफिक्स एग्रीगेशन" +#~ msgid "DDP" +#~ msgstr "डीडीपी" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "नेटफ्लो टोस स्रोत उपसर्ग एकत्रीकरण" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "नेटफ्लो टोल प्रोटो पोर्ट एग्रीगेशन" +#~ msgid "TP++" +#~ msgstr "टी.पी. ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "नेटफ्लो टोस एज़ एग्रीगेशन के रूप में" +#~ msgid "IL" +#~ msgstr "आईएल" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "नेटफ्लो पूर्ण प्रवाह" +#~ msgid "IPv6" +#~ msgstr "आईपीवी 6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "नेटफ्लो स्रोत गंतव्य" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "नेटफ्लो गंतव्य" +#~ msgid "IPv6-Route" +#~ msgstr "आईपीवी 6-मार्ग" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "नेटफ्लो प्रीफिक्स एग्रीगेशन" +#~ msgid "IPv6-Frag" +#~ msgstr "आईपीवी 6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "नेटफ्लो गंतव्य उपसर्ग एकत्रीकरण" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "नेटफ्लो स्रोत उपसर्ग एकत्रीकरण" +#~ msgid "RSVP" +#~ msgstr "RSVP" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "नेटफ्लो प्रोटो पोर्ट एग्रीगेशन" +#~ msgid "GRE" +#~ msgstr "जीआरई" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "नेटफ्लो एज़ एग्रीगेशन" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ईएसपी" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "नेटफ्लो संस्करण 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-एएच" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "नेटफ्लो संस्करण 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "आईपीवी 6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "नेटफ्लो संस्करण 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "आईपीवी 6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "नेटफ्लो संस्करण 1" +#~ msgid "IPv6-Opts" +#~ msgstr "आईपीवी 6-चुनता है" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "% d मिनट" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d मिनट" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "% ड डय" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "शामिल करें यदि:" +#~ msgid "OSPF" +#~ msgstr "ओएसपीएफ" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "रिपोर्ट पैरामीटर" +#~ msgid "MTP" +#~ msgstr "एमटीपी" #, fuzzy -#~ msgid "Note:" -#~ msgstr "ध्यान दें:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "गंतव्य पोर्ट" +#~ msgid "ENCAP" +#~ msgstr "encap" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(उदाहरण, -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src आईपी" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "फ्लो फ़िल्टर की कमी" +#~ msgid "Src/Dest IP" +#~ msgstr "एसआरसी / डेस्ट आईपी" #, fuzzy -#~ msgid "Select One" -#~ msgstr "एक चुनो" +#~ msgid "Src AS" +#~ msgstr "सीनियर ए.एस." #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "निर्दिष्ट समय अवधि में पूरी तरह से" +#~ msgid "Src Prefix" +#~ msgstr "सीनियर उपसर्ग" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "निर्दिष्ट समय अवधि में समय शुरू करें" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "निर्दिष्ट समय अवधि में अंत समय" +#~ msgid "Src Port" +#~ msgstr "Src पोर्ट" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "निर्दिष्ट समय अवधि में कोई भी हिस्सा" +#~ msgid "End Date" +#~ msgstr "अंतिम दिनांक" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "पूर्ण (उत्प्रेरक)" +#~ msgid "Filter Type" +#~ msgstr "फ़िल्टर का नाम" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "उपसर्ग एकत्रीकरण" +#~ msgid "View" +#~ msgstr "देखें" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "गंतव्य उपसर्ग एकत्रीकरण" +#~ msgid "Defaults" +#~ msgstr "चूक" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "स्रोत उपसर्ग एकत्रीकरण" +#~ msgid "Save As" +#~ msgstr "के रूप रक्षित करें" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "प्रोटोकॉल पोर्ट एग्रीगेशन" +#~ msgid "Filter Data" +#~ msgstr "फ़िल्टर का नाम" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "एएस एकत्रीकरण" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "कई फ़ील्ड प्रविष्टि, अल्पविराम द्वारा अलग किए गए, ऊपर के फ़ील्ड में अनुमत हैं। एक माइनस साइन (-) पोर्ट की एंट्री (जैसे -80 पोर्ट के लिए, किसी भी पोर्ट का मतलब 80 होगा)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 टैग के साथ लाइन" +#~ msgid "New Query" +#~ msgstr "नया प्रश्न" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "उपसर्ग" +#~ msgid "Update" +#~ msgstr "अपडेट करें" #, fuzzy -#~ msgid "AS" -#~ msgstr "जैसा" +#~ msgid "Filter Saved" +#~ msgstr "सेव को छान लें" #, fuzzy -#~ msgid "Interface" -#~ msgstr "इंटरफेस" +#~ msgid "Filter Settings Saved" +#~ msgstr "फ़िल्टर सेटिंग्स सहेजे गए" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "अद्यतन फ़िल्टर करें" #, fuzzy #~ msgid "IP" #~ msgstr "आईपी" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "अद्यतन फ़िल्टर करें" +#~ msgid "Interface" +#~ msgstr "इंटरफेस" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "फ़िल्टर सेटिंग्स सहेजे गए" +#~ msgid "AS" +#~ msgstr "जैसा" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "सेव को छान लें" +#~ msgid "Prefix" +#~ msgstr "उपसर्ग" #, fuzzy -#~ msgid "Update" -#~ msgstr "अपडेट करें" +#~ msgid "1 Line with Tags" +#~ msgstr "1 टैग के साथ लाइन" #, fuzzy -#~ msgid "New Query" -#~ msgstr "नया प्रश्न" +#~ msgid "AS Aggregation" +#~ msgstr "एएस एकत्रीकरण" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "कई फ़ील्ड प्रविष्टि, अल्पविराम द्वारा अलग किए गए, ऊपर के फ़ील्ड में अनुमत हैं। एक माइनस साइन (-) पोर्ट की एंट्री (जैसे -80 पोर्ट के लिए, किसी भी पोर्ट का मतलब 80 होगा)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "प्रोटोकॉल पोर्ट एग्रीगेशन" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "फ़िल्टर का नाम" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "स्रोत उपसर्ग एकत्रीकरण" #, fuzzy -#~ msgid "Save As" -#~ msgstr "के रूप रक्षित करें" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "गंतव्य उपसर्ग एकत्रीकरण" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "चूक" +#~ msgid "Prefix Aggregation" +#~ msgstr "उपसर्ग एकत्रीकरण" #, fuzzy -#~ msgid "View" -#~ msgstr "देखें" +#~ msgid "Full (Catalyst)" +#~ msgstr "पूर्ण (उत्प्रेरक)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "फ़िल्टर का नाम" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "निर्दिष्ट समय अवधि में कोई भी हिस्सा" #, fuzzy -#~ msgid "End Date" -#~ msgstr "अंतिम दिनांक" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "निर्दिष्ट समय अवधि में अंत समय" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src पोर्ट" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "निर्दिष्ट समय अवधि में समय शुरू करें" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "निर्दिष्ट समय अवधि में पूरी तरह से" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "सीनियर उपसर्ग" +#~ msgid "Select One" +#~ msgstr "एक चुनो" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "सीनियर ए.एस." +#~ msgid "Flow Filter Constraints" +#~ msgstr "फ्लो फ़िल्टर की कमी" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "एसआरसी / डेस्ट आईपी" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(उदाहरण, -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src आईपी" +#~ msgid "Dest Port(s)" +#~ msgstr "गंतव्य पोर्ट" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "encap" +#~ msgid "Note:" +#~ msgstr "ध्यान दें:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "रिपोर्ट पैरामीटर" #, fuzzy -#~ msgid "MTP" -#~ msgstr "एमटीपी" +#~ msgid "Include if:" +#~ msgstr "शामिल करें यदि:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "ओएसपीएफ" +#~ msgid "%d Days" +#~ msgstr "% ड डय" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d मिनट" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "% d मिनट" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "नेटफ्लो संस्करण 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "आईपीवी 6-चुनता है" +#~ msgid "NetFlow version 5" +#~ msgstr "नेटफ्लो संस्करण 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "आईपीवी 6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "नेटफ्लो संस्करण 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "आईपीवी 6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "नेटफ्लो संस्करण 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-एएच" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "नेटफ्लो एज़ एग्रीगेशन" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ईएसपी" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "नेटफ्लो प्रोटो पोर्ट एग्रीगेशन" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "नेटफ्लो स्रोत उपसर्ग एकत्रीकरण" #, fuzzy -#~ msgid "GRE" -#~ msgstr "जीआरई" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "नेटफ्लो गंतव्य उपसर्ग एकत्रीकरण" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "RSVP" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "नेटफ्लो प्रीफिक्स एग्रीगेशन" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "नेटफ्लो गंतव्य" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "आईपीवी 6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "नेटफ्लो स्रोत गंतव्य" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "आईपीवी 6-मार्ग" +#~ msgid "NetFlow Full Flow" +#~ msgstr "नेटफ्लो पूर्ण प्रवाह" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "नेटफ्लो टोस एज़ एग्रीगेशन के रूप में" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "आईपीवी 6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "नेटफ्लो टोल प्रोटो पोर्ट एग्रीगेशन" #, fuzzy -#~ msgid "IL" -#~ msgstr "आईएल" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "नेटफ्लो टोस स्रोत उपसर्ग एकत्रीकरण" #, fuzzy -#~ msgid "TP++" -#~ msgstr "टी.पी. ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "नेटफ्लो टोस डेस्टिनेशन प्रीफिक्स एग्रीगेशन" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "नेटफ्लो टो प्रीफिक्स एग्रीगेशन" #, fuzzy -#~ msgid "DDP" -#~ msgstr "डीडीपी" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "नेटफ्लो टो प्रीफिक्स पोर्ट एग्रीगेशन" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "फ्लो-टूल्स ने संस्करण 5 को टैग किया" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (अक्षम)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (उच्चतम)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "निर्देशिका" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "योग्यता-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "यह उपकरण प्रवाहित निर्देशिका में है। यह निर्देशिका प्रवाह निर्देशिका पथ में होना चाहिए। यहां पूरा रास्ता मत डालो। इसके अलावा, ऐसा नहीं है कि यदि आप पथ बदलते हैं, तो इसका उपयोग करने के लिए सभी पूर्वनिर्धारित फाइलर सेटअप को फिर से शुरू करना होगा।" #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-एनएसपी" +#~ msgid "Nesting" +#~ msgstr "घोंसला करने की क्रिया" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "निर्देशिका संरचना जिसका उपयोग इस उपकरण के प्रवाह के लिए किया जाएगा।" #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "आईएसओ TP4" +#~ msgid "NetFlow Version" +#~ msgstr "नेटफ्लो संस्करण" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "डिवाइस द्वारा उपयोग किया गया नेटफ्लो प्रोटोकॉल संस्करण।" #, fuzzy -#~ msgid "RDP" -#~ msgstr "आरडीपी" +#~ msgid "Compression Level" +#~ msgstr "संपीड़न स्तर" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "लीफ -2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "प्रवाह फ़ाइलों का संपीड़न स्तर। उच्च संपीड़न स्थान बचाता है, लेकिन परिणामों को संग्रहीत और पुनर्प्राप्त करने के लिए अधिक CPU का उपयोग करता है।" #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "लीफ -1" +#~ msgid "Rotation" +#~ msgstr "रोटेशन" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "ट्रंक -2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "एक नई फ़्लो फ़ाइल बनाने के लिए कितनी बार।" #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "ट्रंक -1" +#~ msgid "Expiration" +#~ msgstr "समय सीमा समाप्ति" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-आईडीपी" +#~ msgid "How long to keep your flow files." +#~ msgstr "कब तक अपने प्रवाह फ़ाइलों को रखने के लिए।" #, fuzzy -#~ msgid "PRM" -#~ msgstr "पी आर एम" +#~ msgid "Version" +#~ msgstr "संस्करण %s" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "दबाव" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "समय सीमा समाप्त" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "कोई उपकरण नहीं" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "अराजकता" +#~ msgid "Manage Listeners" +#~ msgstr "श्रोताओं को प्रबंधित करें" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "प्रवाह उपकरण बाइनरी पथ" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "आपके फ़्लो-कैट, फ़्लो-फ़िल्टर और फ़्लो-स्टेट बाइनरी का मार्ग।" #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "फ्लो टूल वर्क डायरेक्टरी" #, fuzzy -#~ msgid "PUP" -#~ msgstr "पिल्ला" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "यह काम करने के लिए एक अस्थायी निर्देशिका का मार्ग है।" #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP द्वितीय" +#~ msgid "Flows Directory" +#~ msgstr "प्रवाह निर्देशिका" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "बीबीएन-आरसीसी-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "यह आपके प्रवाह फ़ोल्डर संरचना के पथ को आधार बनाने का मार्ग है।" #, fuzzy -#~ msgid "IGP" -#~ msgstr "आईजीपी" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "वह विधि जिससे आप होस्टनाम को हल करना चाहते हैं।" #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "स्थानीय सर्वर का उपयोग करें" #, fuzzy -#~ msgid "CBT" -#~ msgstr "सीबीटी" +#~ msgid "Use DNS Server Below" +#~ msgstr "नीचे DNS सर्वर का उपयोग करें" #, fuzzy -#~ msgid "ST" -#~ msgstr "अनुसूचित जनजाति" +#~ msgid "Don't Resolve DNS" +#~ msgstr "डीएनएस को हल न करें" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "वैकल्पिक DNS सर्वर" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "यह DNS सर्वर है जिसका उपयोग नामों को हल करने के लिए किया जाता है।" #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "स्ट्रिप डोमेन नाम" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "डोमेन से पट्टी करने के लिए डोमेन नामों की एक अल्पविराम सीमांकित सूची।" #, fuzzy -#~ msgid "UDP" -#~ msgstr "यूडीपी" +#~ msgid "New Flow" +#~ msgstr "नया प्रवाह" #, fuzzy -#~ msgid "TCP" -#~ msgstr "टीसीपी" +#~ msgid "Select a Filter to display data" +#~ msgstr "प्रिंट रिपोर्ट" diff --git a/locales/po/it-IT.po b/locales/po/it-IT.po index e04102f..e16fcb8 100644 --- a/locales/po/it-IT.po +++ b/locales/po/it-IT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:21-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "Porta sorgente UDP/TCP" msgid "UDP/TCP Port" msgstr "Porta UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Origine IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "IP di destinazione" @@ -98,13 +98,13 @@ msgstr "Interfaccia di uscita" msgid "Input/Output Interface" msgstr "Interfaccia ingresso/uscita" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Origine Dati" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Destinazione COME" @@ -119,7 +119,7 @@ msgstr "Fonte/Destinazione AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Prefisso sorgente" @@ -193,7 +193,7 @@ msgstr "Nessun limite" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Tutti" @@ -207,7 +207,7 @@ msgstr "Porta(i) di origine" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Flussi" @@ -216,8 +216,8 @@ msgstr "Flussi" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Pacchetti" @@ -243,18 +243,18 @@ msgstr "IP di destinazione" msgid "Port" msgstr "Porta" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "IP di destinazione" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Indirizzo email" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Protocollo" @@ -279,290 +279,295 @@ msgstr "Termini e Condizioni" msgid "Destingation Prefix" msgstr "Prefisso di destinazione" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Origine IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "IP di destinazione" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Porta(i) di origine" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "IP di destinazione" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Ora Inizio" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Ora di fine" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Attivo" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Flag" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Origine IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "IP di destinazione" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Filtri trasparenti" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtro" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtro" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Ascoltatore" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Preset" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Rapporto: [nuovo]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Stampato:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Statistiche" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Rapporti statistici" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Stampa i rapporti" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Gestire gli orari" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Risolvere Indirizzi:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Risolvere Indirizzi:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Si" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "No" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Ordina campo:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Bytes minimi:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protocolli" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protocolli" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Bandiere TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Campi TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Porta(i) di origine" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Interfaccia sorgente" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Porta di destinazione" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Interfaccia di destinazione" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Destinazione AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Dispositivo [nuovo]" msgid "FlowView Listeners" msgstr "Ascoltatori FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Cerca" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Vai" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Impostazione/Rifresh Filtri" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Cancella" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Filtri trasparenti" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Ascoltatori" @@ -750,34 +755,38 @@ msgstr "Fare clic su 'Continua' per attivare il seguente programma(i)." msgid "You must select at least one Filter." msgstr "È necessario selezionare almeno un dispositivo." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Filtri di flusso" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filtri" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Predefinito" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Nome Filtri" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Nome host Risoluzione" @@ -828,7 +837,7 @@ msgstr "Nuovo programma" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Immettere un titolo del report per il FlowView Schedule." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Abilitato" @@ -903,18 +912,22 @@ msgstr "Rapporto: [modifica: %s]" msgid "Report: [new]" msgstr "Rapporto: [nuovo]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Selettore della data d'inizio" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Orari FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Pianificazioni" @@ -924,22 +937,22 @@ msgstr "Pianificazioni" msgid "Schedule Title" msgstr "Titolo del programma" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Intervallo" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Data Inizio" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Prossimo invio" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Email" @@ -959,25 +972,20 @@ msgstr "Rapporto: [modifica: %s]" msgid "Filter: [new]" msgstr "Rapporto: [nuovo]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Stampa i rapporti" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Stampa i rapporti" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Personalizzato" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Selettore della data di fine" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Mostra/Nascondi" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tabella" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Barra dei byte" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Barra dei pacchetti" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Barra dei flussi" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Sconosciuto" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Flusso netto (%)" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Nuovo flusso" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Origine Dati" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Origine Dati" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Destinazione AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Porta di destinazione" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Porta di destinazione" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Destinazione IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Prefisso di destinazione" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Pacchetti" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Statistiche di sintesi" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Distribuzione della dimensione del pacchetto IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Pacchetti per distribuzione del flusso (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Ottetti per distribuzione del flusso (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Distribuzione del tempo di flusso (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "È necessario selezionare un rapporto statistico o un rapporto stampato!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "È necessario selezionare solo un rapporto statistico o un rapporto stampato (non entrambi)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Date non valide, la data/ora di fine è anteriore alla data/ora di inizio!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "IP non valido per l'indirizzo sorgente
(deve essere nella forma di '192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sottorete non valida per l'indirizzo sorgente
(Deve essere nella forma di '192.168.0.1/255.255.255.255.255.255.0' o '192.168.0.0.1/24')." -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "IP non valido per l'indirizzo di destinazione
(deve essere nella forma di '192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sottorete non valida per l'indirizzo di destinazione
(Deve essere nella forma di '192.168.0.1/255.255.255.255.255.255.0' o '192.168.0.0.1/24')." -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Valore non valido per Source Interface!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Valore non valido per Source Port! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Valore non valido per Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Valore non valido per l'interfaccia di destinazione!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Valore non valido per la porta di destinazione! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Valore non valido per Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Valore non valido per il protocollo! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Valore non valido per TCP Flag! (es: 0x1b o 0x1b/SA o SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Valore non valido per gli ottetti Cutoff!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Valore non valido per Cutoff Lines!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Valore non valido per Sort Field!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Diagramma di visualizzazione del flusso per %s Tipo è %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Max Flows:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Barra dei pacchetti" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Visualizzatore di flusso" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Ammin di flusso" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Il filtro è stato eliminato" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Il filtro è stato aggiornato" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Visualizzatore di flusso" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Vedi" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Salva" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Modifica)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Azioni" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d Settimana" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d Settimane" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Mese" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d Mesi" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d Anno" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Varie" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Un elenco delimitato da virgole di nomi di domini da rimuovere dal dominio." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Nomi a dominio di striscia" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Questo è il server DNS utilizzato per risolvere i nomi." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Server DNS alternativo" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Non risolvere i DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Usa il server DNS qui sotto" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Utilizzare il server locale" +#~ msgid "ST" +#~ msgstr "A" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Il metodo con cui si desidera risolvere i nomi degli host." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Questo è il percorso per basare il percorso della struttura delle cartelle di flusso." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Elenco dei flussi" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Questo è il percorso di una directory temporanea per svolgere il lavoro." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Elenco degli strumenti di lavoro Flow Tools" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Il percorso per raggiungere il vostro flusso-gatto, flusso-filtro, flusso-filtro e flusso-stato binario." +#~ msgid "PUP" +#~ msgstr "CUCCIOLO" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Percorso binario degli strumenti di flusso" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Gestire gli ascoltatori" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Dispositivi" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Scadenza" +#~ msgid "CHAOS" +#~ msgstr "I CAROSELLI" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Compressione" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Versione" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Quanto tempo ci vuole per conservare i tuoi file di flusso." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Scadenza" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Con quale frequenza creare un nuovo file di flusso." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotazione" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Livello di compressione dei file di flusso. Una compressione più elevata consente di risparmiare spazio, ma utilizza più CPU per memorizzare e recuperare i risultati." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Livello di compressione" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Versione del NetFlow Protocol utilizzata dal dispositivo." +#~ msgid "LEAF-2" +#~ msgstr "FOGLIA-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Versione NetFlow" +#~ msgid "RDP" +#~ msgstr "PSR" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Struttura di directory che verrà utilizzata per i flussi per questo dispositivo." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nidificazione" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Directory in cui sono presenti i flussi di questo dispositivo. Questa directory deve trovarsi nel percorso Flow Directory. Non mettere il sentiero completo qui. Inoltre, non che se si cambia il percorso, tutte le impostazioni predefinite del fileer per usarlo dovranno essere salvate nuovamente." +#~ msgid "NETBLT" +#~ msgstr "RETE" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Directory" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (massimo)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Disabili)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools etichettato versione 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS prefisso Aggregazione delle porte NetFlow ToS" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Aggregazione prefisso NetFlow ToS Prefix Aggregation" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "Aggregazione prefisso di destinazione NetFlow ToS Aggregation" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Aggregazione del prefisso sorgente NetFlow ToS Source Prefix Aggregation" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "Aggregazione del Porto Proto NetFlow ToS Proto Port Aggregation" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "I flussi netti verso l'aggregazione come aggregazione" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow a flusso pieno" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Destinazione della sorgente NetFlow Source" +#~ msgid "SDRP" +#~ msgstr "DSP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Destinazione NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Route" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Aggregazione del prefisso NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Aggregazione del prefisso di destinazione NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Aggregazione del prefisso della sorgente NetFlow" +#~ msgid "RSVP" +#~ msgstr "RSVP" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Aggregazione del porto Proto NetFlow Proto Port Aggregation" +#~ msgid "GRE" +#~ msgstr "GRANDE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Aggregazione NetFlow AS Aggregation" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow versione 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow versione 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow versione 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow versione 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-opzioni" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d minuti" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minuto" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Giorni" +#~ msgid "EIGRP" +#~ msgstr "OTTAVO" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Includi se:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Parametri del rapporto" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Nota:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Porto(i) di destinazione" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(ad esempio, -0x0x0b/0x0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Vincoli del filtro di flusso" +#~ msgid "Src/Dest IP" +#~ msgstr "IP Src/Dest" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Seleziona" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Interamente in un intervallo di tempo specificato" +#~ msgid "Src Prefix" +#~ msgstr "Prefisso Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Ora di inizio in un intervallo di tempo specificato" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Tempo di fine in un intervallo di tempo specificato" +#~ msgid "Src Port" +#~ msgstr "Porta Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Qualsiasi parte in un intervallo di tempo specificato" +#~ msgid "End Date" +#~ msgstr "Data Fine" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Pieno (catalizzatore)" +#~ msgid "Filter Type" +#~ msgstr "Nome Filtri" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Prefisso Aggregazione" +#~ msgid "View" +#~ msgstr "Vedi" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Aggregazione del prefisso di destinazione" +#~ msgid "Defaults" +#~ msgstr "Predefinite" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Aggregazione del prefisso di origine" +#~ msgid "Save As" +#~ msgstr "Salva con Nome..." #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Aggregazione dei porti di protocollo" +#~ msgid "Filter Data" +#~ msgstr "Nome Filtri" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "Aggregazione AS" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " Nei campi di cui sopra sono consentite più voci, separate da virgole. Un segno meno (-) negherà una voce (es. -80 per Porto, significherebbe qualsiasi Porto ma 80)." #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 Linea con Tags" +#~ msgid "New Query" +#~ msgstr "Nuova domanda" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Prefisso" +#~ msgid "Update" +#~ msgstr "Aggiorna" #, fuzzy -#~ msgid "AS" -#~ msgstr "COME" +#~ msgid "Filter Saved" +#~ msgstr "Filtro salvato" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Interfaccia" +#~ msgid "Filter Settings Saved" +#~ msgstr "Impostazioni del filtro salvate" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filtro aggiornato" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filtro aggiornato" +#~ msgid "Interface" +#~ msgstr "Interfaccia" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Impostazioni del filtro salvate" +#~ msgid "AS" +#~ msgstr "COME" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtro salvato" +#~ msgid "Prefix" +#~ msgstr "Prefisso" #, fuzzy -#~ msgid "Update" -#~ msgstr "Aggiorna" +#~ msgid "1 Line with Tags" +#~ msgstr "1 Linea con Tags" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nuova domanda" +#~ msgid "AS Aggregation" +#~ msgstr "Aggregazione AS" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " Nei campi di cui sopra sono consentite più voci, separate da virgole. Un segno meno (-) negherà una voce (es. -80 per Porto, significherebbe qualsiasi Porto ma 80)." +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Aggregazione dei porti di protocollo" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Nome Filtri" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Aggregazione del prefisso di origine" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Salva con Nome..." +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Aggregazione del prefisso di destinazione" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Predefinite" +#~ msgid "Prefix Aggregation" +#~ msgstr "Prefisso Aggregazione" #, fuzzy -#~ msgid "View" -#~ msgstr "Vedi" +#~ msgid "Full (Catalyst)" +#~ msgstr "Pieno (catalizzatore)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Nome Filtri" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Qualsiasi parte in un intervallo di tempo specificato" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Data Fine" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Tempo di fine in un intervallo di tempo specificato" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Porta Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Ora di inizio in un intervallo di tempo specificato" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Interamente in un intervallo di tempo specificato" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Prefisso Src" +#~ msgid "Select One" +#~ msgstr "Seleziona" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Vincoli del filtro di flusso" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "IP Src/Dest" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(ad esempio, -0x0x0b/0x0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Porto(i) di destinazione" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Nota:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Parametri del rapporto" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Includi se:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Giorni" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "OTTAVO" +#~ msgid "%d Minute" +#~ msgstr "%d Minuto" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d minuti" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow versione 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-opzioni" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow versione 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow versione 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow versione 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Aggregazione NetFlow AS Aggregation" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Aggregazione del porto Proto NetFlow Proto Port Aggregation" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Aggregazione del prefisso della sorgente NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRANDE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Aggregazione del prefisso di destinazione NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "RSVP" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Aggregazione del prefisso NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Destinazione NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Destinazione della sorgente NetFlow Source" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow a flusso pieno" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "DSP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "I flussi netti verso l'aggregazione come aggregazione" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "Aggregazione del Porto Proto NetFlow ToS Proto Port Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Aggregazione del prefisso sorgente NetFlow ToS Source Prefix Aggregation" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "Aggregazione prefisso di destinazione NetFlow ToS Aggregation" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Aggregazione prefisso NetFlow ToS Prefix Aggregation" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS prefisso Aggregazione delle porte NetFlow ToS" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools etichettato versione 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Disabili)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (massimo)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Directory" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Directory in cui sono presenti i flussi di questo dispositivo. Questa directory deve trovarsi nel percorso Flow Directory. Non mettere il sentiero completo qui. Inoltre, non che se si cambia il percorso, tutte le impostazioni predefinite del fileer per usarlo dovranno essere salvate nuovamente." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nidificazione" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "RETE" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Struttura di directory che verrà utilizzata per i flussi per questo dispositivo." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Versione NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Versione del NetFlow Protocol utilizzata dal dispositivo." #, fuzzy -#~ msgid "RDP" -#~ msgstr "PSR" +#~ msgid "Compression Level" +#~ msgstr "Livello di compressione" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "FOGLIA-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Livello di compressione dei file di flusso. Una compressione più elevata consente di risparmiare spazio, ma utilizza più CPU per memorizzare e recuperare i risultati." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Rotazione" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Con quale frequenza creare un nuovo file di flusso." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Scadenza" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Quanto tempo ci vuole per conservare i tuoi file di flusso." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Versione" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Compressione" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Scadenza" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Dispositivi" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "I CAROSELLI" +#~ msgid "Manage Listeners" +#~ msgstr "Gestire gli ascoltatori" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Percorso binario degli strumenti di flusso" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Il percorso per raggiungere il vostro flusso-gatto, flusso-filtro, flusso-filtro e flusso-stato binario." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Elenco degli strumenti di lavoro Flow Tools" #, fuzzy -#~ msgid "PUP" -#~ msgstr "CUCCIOLO" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Questo è il percorso di una directory temporanea per svolgere il lavoro." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Elenco dei flussi" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Questo è il percorso per basare il percorso della struttura delle cartelle di flusso." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Il metodo con cui si desidera risolvere i nomi degli host." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Utilizzare il server locale" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Usa il server DNS qui sotto" #, fuzzy -#~ msgid "ST" -#~ msgstr "A" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Non risolvere i DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Server DNS alternativo" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Questo è il server DNS utilizzato per risolvere i nomi." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Nomi a dominio di striscia" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Un elenco delimitato da virgole di nomi di domini da rimuovere dal dominio." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Nuovo flusso" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Stampa i rapporti" diff --git a/locales/po/ja-JP.po b/locales/po/ja-JP.po index 30751af..4b1d56d 100644 --- a/locales/po/ja-JP.po +++ b/locales/po/ja-JP.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:23-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP送信元ポート" msgid "UDP/TCP Port" msgstr "UDP / TCPポート" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "送信元IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "宛先IP" @@ -98,13 +98,13 @@ msgstr "出力インタフェース" msgid "Input/Output Interface" msgstr "入出力インターフェース" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "データソース" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "宛先AS" @@ -119,7 +119,7 @@ msgstr "送信元/宛先AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "ソースプレフィックス" @@ -193,7 +193,7 @@ msgstr "制限なし" msgid "%s Bytes" msgstr "%sバイト" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "すべて" @@ -207,7 +207,7 @@ msgstr "送信元ポート" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "流れ" @@ -216,8 +216,8 @@ msgstr "流れ" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "パケット" @@ -243,18 +243,18 @@ msgstr "宛先IP" msgid "Port" msgstr "ポート" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "宛先IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "E メールアドレス" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "サーバーがサポートするプロトコルのバージョンです。" @@ -279,290 +279,295 @@ msgstr "TOS" msgid "Destingation Prefix" msgstr "宛先プレフィックス" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "送信元IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "宛先IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "送信元ポート" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "宛先IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "開始時間" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "終了時間" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "操作" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "フラグ" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "送信元IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "宛先IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "絞り込み条件を解除する" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "フィルター" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "フィルター" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "リスナー" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "プリセット" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "報告:[新]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "印刷された" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "統計" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "統計レポート" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "印刷レポート" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "スケジュールの管理" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "アドレス解決:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "アドレス解決:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "はい" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "いいえ" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "ソートフィールド:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "最小バイト数" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "プロトコル" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "プロトコル" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCPフラグ" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOSフィールド" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "送信元ポート" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "ソースインタフェース" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "宛先ポート" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "宛先インターフェース" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "端末[新規]" msgid "FlowView Listeners" msgstr "FlowViewリスナー" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "検索" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Go" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "フィルタの設定/更新" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "クリア" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "絞り込み条件を解除する" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "リスナー" @@ -750,34 +755,38 @@ msgstr "次のスケジュールを有効にするには、[続行]をクリッ msgid "You must select at least one Filter." msgstr "少なくとも1つのデバイスを選択する必要があります。" -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "フローフィルター" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "ログのフィルター" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "デフォルト" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "絞り込み検索名" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "ホスト名解決" @@ -828,7 +837,7 @@ msgstr "新規スケジュール追加" msgid "Enter a Report Title for the FlowView Schedule." msgstr "FlowViewスケジュールのレポートタイトルを入力してください。" -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "有効" @@ -903,18 +912,22 @@ msgstr "報告:[編集:%s]" msgid "Report: [new]" msgstr "報告:[新]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "開始日セレクタ" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowViewスケジュール" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "スケジュール" @@ -924,22 +937,22 @@ msgstr "スケジュール" msgid "Schedule Title" msgstr "スケジュールタイトル" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "間隔" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "開始日" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "次に送る" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "メールアドレス" @@ -959,25 +972,20 @@ msgstr "報告:[編集:%s]" msgid "Filter: [new]" msgstr "報告:[新]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "印刷レポート" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "印刷レポート" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "カスタム" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "終了日セレクタ" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "子テーマ属性の表示/非表示" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "テーブル" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "バイトバー" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "パケットバー" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "フローバー" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "不明" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "サボテンFlowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netflow - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "新しい流れ" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%sバイト" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%sバイト" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "データソース" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "データソース" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "宛先ポート" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "宛先ポート" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "宛先プレフィックス" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "パケット" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "要約統計" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IPパケットサイズ分布(%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "フロー分布あたりのパケット数(%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "フロー分布ごとのオクテット(%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "流動時間分布(%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "統計レポートまたは印刷レポートを選択してください。" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "統計レポートまたは印刷レポートのみを選択してください(両方ではありません)。" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "日付が無効です。終了日/時刻が開始日/時刻より前です。" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "送信元アドレスのIPが無効です。
( '192.168.0.1'の形式でなければなりません)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "送信元アドレスのサブネットが無効です。
( '192.168.0.1/255.255.255.0'または '192.168.0.1/24'の形式にしてください)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "宛先アドレスのIPが無効です。
( '192.168.0.1'の形式でなければなりません)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "宛先アドレスに無効なサブネットです。
( '192.168.0.1/255.255.255.0'または '192.168.0.1/24'の形式にしてください)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "ソースインタフェースの値が無効です。" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "送信元ポートの値が無効です。 (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Source ASの値が無効です。 (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "宛先インタフェースの値が無効です。" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "宛先ポートの値が無効です。 (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "宛先ASの値が無効です。 (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "プロトコルの値が無効です。 (1〜255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "TCPフラグの値が無効です。 (例:0x1b、0x1b / SA、SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "カットオフオクテットの値が無効です。" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "カットオフラインの値が無効です。" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "ソートフィールドの値が無効です。" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "%sタイプのFlowViewチャートは%sです" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "最大流量:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "パケットバー" @@ -1423,721 +1447,733 @@ msgstr "プラグイン - >フロービューア" msgid "Plugin -> Flow Admin" msgstr "プラグイン - > Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "フィルタは削除されました" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "フィルタが更新されました" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "フロービューア" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "表示" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "保存" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(編集)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "操作" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d週" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d週" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d月" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d月" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d年" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "その他" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "ドメインから削除するドメイン名のカンマ区切りリスト。" +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "ドメイン名を削除する" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "これは名前解決に使用されるDNSサーバーです。" +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "代替DNSサーバー" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "DNSを解決しない" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "下記のDNSサーバーを使用する" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "ローカルサーバーを使用" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "ホスト名を解決したい方法。" +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "これは、フローフォルダ構造のパスのベースとなるパスです。" +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "フローディレクトリ" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "これは作業を行うための一時ディレクトリへのパスです。" +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "フローツール作業ディレクトリ" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "flow-cat、flow-filter、およびflow-statバイナリへのパス。" +#~ msgid "PUP" +#~ msgstr "子犬" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "フローツールバイナリパス" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "リスナーを管理する" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "デバイス" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "有効期限" +#~ msgid "CHAOS" +#~ msgstr "混沌" #, fuzzy -#~ msgid "Compression" -#~ msgstr "圧縮" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "バージョン" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "フローファイルを保存する期間" +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "有効期限" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "新しいフローファイルを作成する頻度。" +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "ローテーション" +#~ msgid "TRUNK-1" +#~ msgstr "トランク-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "フローファイルの圧縮レベル。圧縮率が高いとスペースが節約されますが、結果の保存と取得に使用されるCPUが増えます。" +#~ msgid "TRUNK-2" +#~ msgstr "トランク-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "圧縮レベル" +#~ msgid "LEAF-1" +#~ msgstr "リーフ-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "デバイスで使用されているNetFlowプロトコルバージョン。" +#~ msgid "LEAF-2" +#~ msgstr "リーフ-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlowバージョン" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "このデバイスのフローに使用されるディレクトリ構造。" +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "ネスティング" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "このデバイスが流れるディレクトリ。このディレクトリはFlow Directoryパスになければなりません。ここに絶対パスを置かないでください。また、パスを変更した場合は、それを使用するように設定されたすべての事前定義ファイラーを保存する必要があります。" +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "ディレクトリ" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9(最高)" +#~ msgid "MERIT-INP" +#~ msgstr "メリットイン" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0(無効)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Toolsタグ付きバージョン5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToSプレフィクスポート集約" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToSプレフィックス集約" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS宛先プレフィクス集約" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToSソースプレフィクス集約" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToSプロトポート集約" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS集約" +#~ msgid "IL" +#~ msgstr "イリノイ州" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlowフルフロー" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlowの送信元の宛先" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlowの宛先" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6ルート" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlowプレフィックス集約" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow宛先プレフィクス集約" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow送信元プレフィクス集約" +#~ msgid "RSVP" +#~ msgstr "予約" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlowプロトポート集約" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow ASアグリゲーション" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlowバージョン7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlowバージョン6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlowバージョン5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlowバージョン1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6オプト" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d 分" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d分" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d日" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "次の場合に含めます。" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "レポートパラメータ" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "メモ:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "宛先ポート" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(例:-0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "送信元IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "フローフィルタの制約" +#~ msgid "Src/Dest IP" +#~ msgstr "送信元/宛先IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "一つ選択してください" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "指定された期間内" +#~ msgid "Src Prefix" +#~ msgstr "Srcプレフィックス" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "指定された期間内の開始時刻" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "指定された期間内の終了時刻" +#~ msgid "Src Port" +#~ msgstr "送信元ポート" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "指定期間内の任意の部分" +#~ msgid "End Date" +#~ msgstr "終了日" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "フル(Catalyst)" +#~ msgid "Filter Type" +#~ msgstr "絞り込み検索名" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "プレフィックス集計" +#~ msgid "View" +#~ msgstr "表示" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "宛先プレフィクス集約" +#~ msgid "Defaults" +#~ msgstr "デフォルト" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "ソースプレフィックス集約" +#~ msgid "Save As" +#~ msgstr "保存する" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "プロトコルポート集約" +#~ msgid "Filter Data" +#~ msgstr "絞り込み検索名" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS集計" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "上記のフィールドでは、カンマで区切って複数のフィールドを入力できます。マイナス記号( - )はエントリを無効にします(例:Portの場合は-80、80以外の場合はPortを意味します)。" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "タグ付き1行" +#~ msgid "New Query" +#~ msgstr "新しいクエリ" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "接頭語" +#~ msgid "Update" +#~ msgstr "更新" #, fuzzy -#~ msgid "AS" -#~ msgstr "として" +#~ msgid "Filter Saved" +#~ msgstr "保存したフィルタ" #, fuzzy -#~ msgid "Interface" -#~ msgstr "インタフェース" +#~ msgid "Filter Settings Saved" +#~ msgstr "保存したフィルタ設定" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "フィルタ更新" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "フィルタ更新" +#~ msgid "Interface" +#~ msgstr "インタフェース" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "保存したフィルタ設定" +#~ msgid "AS" +#~ msgstr "として" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "保存したフィルタ" +#~ msgid "Prefix" +#~ msgstr "接頭語" #, fuzzy -#~ msgid "Update" -#~ msgstr "更新" +#~ msgid "1 Line with Tags" +#~ msgstr "タグ付き1行" #, fuzzy -#~ msgid "New Query" -#~ msgstr "新しいクエリ" +#~ msgid "AS Aggregation" +#~ msgstr "AS集計" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "上記のフィールドでは、カンマで区切って複数のフィールドを入力できます。マイナス記号( - )はエントリを無効にします(例:Portの場合は-80、80以外の場合はPortを意味します)。" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "プロトコルポート集約" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "絞り込み検索名" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "ソースプレフィックス集約" #, fuzzy -#~ msgid "Save As" -#~ msgstr "保存する" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "宛先プレフィクス集約" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "デフォルト" +#~ msgid "Prefix Aggregation" +#~ msgstr "プレフィックス集計" #, fuzzy -#~ msgid "View" -#~ msgstr "表示" +#~ msgid "Full (Catalyst)" +#~ msgstr "フル(Catalyst)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "絞り込み検索名" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "指定期間内の任意の部分" #, fuzzy -#~ msgid "End Date" -#~ msgstr "終了日" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "指定された期間内の終了時刻" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "送信元ポート" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "指定された期間内の開始時刻" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "指定された期間内" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Srcプレフィックス" +#~ msgid "Select One" +#~ msgstr "一つ選択してください" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "フローフィルタの制約" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "送信元/宛先IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(例:-0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "送信元IP" +#~ msgid "Dest Port(s)" +#~ msgstr "宛先ポート" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "メモ:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "レポートパラメータ" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "次の場合に含めます。" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d日" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d分" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d 分" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlowバージョン1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6オプト" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlowバージョン5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlowバージョン6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlowバージョン7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow ASアグリゲーション" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlowプロトポート集約" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow送信元プレフィクス集約" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow宛先プレフィクス集約" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "予約" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlowプレフィックス集約" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlowの宛先" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlowの送信元の宛先" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6ルート" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlowフルフロー" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS集約" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToSプロトポート集約" #, fuzzy -#~ msgid "IL" -#~ msgstr "イリノイ州" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToSソースプレフィクス集約" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS宛先プレフィクス集約" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToSプレフィックス集約" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToSプレフィクスポート集約" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Toolsタグ付きバージョン5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0(無効)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9(最高)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "ディレクトリ" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "メリットイン" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "このデバイスが流れるディレクトリ。このディレクトリはFlow Directoryパスになければなりません。ここに絶対パスを置かないでください。また、パスを変更した場合は、それを使用するように設定されたすべての事前定義ファイラーを保存する必要があります。" #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "ネスティング" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "このデバイスのフローに使用されるディレクトリ構造。" #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlowバージョン" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "デバイスで使用されているNetFlowプロトコルバージョン。" #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "圧縮レベル" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "リーフ-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "フローファイルの圧縮レベル。圧縮率が高いとスペースが節約されますが、結果の保存と取得に使用されるCPUが増えます。" #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "リーフ-1" +#~ msgid "Rotation" +#~ msgstr "ローテーション" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "トランク-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "新しいフローファイルを作成する頻度。" #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "トランク-1" +#~ msgid "Expiration" +#~ msgstr "有効期限" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "フローファイルを保存する期間" #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "バージョン" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "圧縮" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "有効期限" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "デバイス" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "混沌" +#~ msgid "Manage Listeners" +#~ msgstr "リスナーを管理する" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "フローツールバイナリパス" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "flow-cat、flow-filter、およびflow-statバイナリへのパス。" #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "フローツール作業ディレクトリ" #, fuzzy -#~ msgid "PUP" -#~ msgstr "子犬" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "これは作業を行うための一時ディレクトリへのパスです。" #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "フローディレクトリ" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "これは、フローフォルダ構造のパスのベースとなるパスです。" #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "ホスト名を解決したい方法。" #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "ローカルサーバーを使用" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "下記のDNSサーバーを使用する" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "DNSを解決しない" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "代替DNSサーバー" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "これは名前解決に使用されるDNSサーバーです。" #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "ドメイン名を削除する" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "ドメインから削除するドメイン名のカンマ区切りリスト。" #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "新しい流れ" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "印刷レポート" diff --git a/locales/po/ko-KR.po b/locales/po/ko-KR.po index 16215d2..c704ac2 100644 --- a/locales/po/ko-KR.po +++ b/locales/po/ko-KR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:27-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP 소스 포트" msgid "UDP/TCP Port" msgstr "UDP / TCP 포트" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "소스 IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "대상 IP" @@ -98,13 +98,13 @@ msgstr "출력 인터페이스" msgid "Input/Output Interface" msgstr "입력 / 출력 인터페이스" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "데이터 원본" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "목적지 AS" @@ -119,7 +119,7 @@ msgstr "출발지 / 도착지 AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "소스 접두사" @@ -193,7 +193,7 @@ msgstr "제한 없음" msgid "%s Bytes" msgstr "%s 바이트" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "모두" @@ -207,7 +207,7 @@ msgstr "소스 포트" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "흐름" @@ -216,8 +216,8 @@ msgstr "흐름" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "바이트" @@ -226,8 +226,8 @@ msgstr "바이트" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "패킷" @@ -243,18 +243,18 @@ msgstr "대상 IP" msgid "Port" msgstr "포트" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "목적지 IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "이메일 주소" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "프로토콜" @@ -279,290 +279,295 @@ msgstr "이용약관" msgid "Destingation Prefix" msgstr "목적지 접두사" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "소스 IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "대상 IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "소스 포트" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "대상 IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "시작 시간" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "종료" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "활성화" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "플래그" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "소스 IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "대상 IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "필터 지우기" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "필터" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "필터" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "경청자" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "사전 설정" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "신고 : [new]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "인쇄 :" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "통계" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "통계 보고서" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "보고서 인쇄" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "일정 관리" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "주소 해결 :" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "주소 해결 :" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "예" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "아니오" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "필드 정렬 :" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "최소 바이트 수 :" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "프로토콜" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "프로토콜" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP 플래그" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "서비스 약관" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "소스 포트" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "소스 인터페이스" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "목적지 항구" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "목적지 인터페이스" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "목적지" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "기기 [신품]" msgid "FlowView Listeners" msgstr "FlowView Listener" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "검색" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "가기" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "필터 설정 / 새로 고침" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "지우기" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "필터 지우기" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "청취자" @@ -750,34 +755,38 @@ msgstr "다음 일정을 사용하려면 '계속'을 클릭하십시오." msgid "You must select at least one Filter." msgstr "하나 이상의 장치를 선택해야합니다." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "플로우 필터" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "필터" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "기본값" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "이름 필터" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "호스트 이름 해석" @@ -828,7 +837,7 @@ msgstr "새로운 스케줄" msgid "Enter a Report Title for the FlowView Schedule." msgstr "FlowView 일정에 대한 보고서 제목을 입력하십시오." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "활성화" @@ -903,18 +912,22 @@ msgstr "보고서 : [편집 : %s]" msgid "Report: [new]" msgstr "신고 : [new]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "시작 날짜 선택기" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView 일정" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "스케쥴" @@ -924,22 +937,22 @@ msgstr "스케쥴" msgid "Schedule Title" msgstr "스케쥴 제목" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "간격" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "시작일" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "다음 보내기" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "이메일" @@ -959,25 +972,20 @@ msgstr "보고서 : [편집 : %s]" msgid "Filter: [new]" msgstr "신고 : [new]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "보고서 인쇄" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "보고서 인쇄" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "사용자 정의" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "종료일 선택기" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "표시 / 숨기기" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "표" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "바이트 바" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "패킷 모음" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "흐름 표시 줄" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "알 수 없음" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "선인장 Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netflow - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "새로운 흐름" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s 바이트" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s 바이트" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "데이터 원본" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "데이터 원본" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "목적지" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "목적지 항구" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "목적지 항구" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "목적지 IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "목적지 접두어" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "패킷" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "요약 통계" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP 패킷 크기 분포 (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "흐름 분포 (%) 당 패킷" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "유량 분포 당 옥텟 (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "유동 시간 분포 (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "통계 보고서 또는 인쇄 된 보고서를 선택해야합니다!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "통계 보고서 또는 인쇄 보고서 만 선택해야합니다 (두 가지가 아닌)." -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "날짜가 잘못되었습니다. 종료 날짜 / 시간이 시작 날짜 / 시간보다 빠릅니다!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "소스 주소의 IP가 잘못되었습니다!
( '192.168.0.1'형식이어야 함)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "소스 주소에 대한 서브넷이 잘못되었습니다!
( '192.168.0.1/255.255.255.0'또는 '192.168.0.1/24'형식이어야 함)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "도착 IP 주소가 잘못되었습니다!
( '192.168.0.1'형식이어야 함)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "대상 주소에 대한 서브넷이 잘못되었습니다!
( '192.168.0.1/255.255.255.0'또는 '192.168.0.1/24'형식이어야 함)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "원본 인터페이스에 대한 값이 잘못되었습니다!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "원본 포트 값이 잘못되었습니다! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "원본 AS 값이 잘못되었습니다. (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "대상 인터페이스에 대한 값이 잘못되었습니다!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "대상 포트에 대한 값이 잘못되었습니다! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Destination AS! 값이 잘못되었습니다. (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "프로토콜 값이 잘못되었습니다! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "TCP 플래그의 값이 잘못되었습니다! (예 : 0x1b 또는 0x1b / SA 또는 SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Cutoff Octets에 대한 값이 잘못되었습니다!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "컷오프 라인 값이 잘못되었습니다!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Sort Field! 값이 잘못되었습니다!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "%s 유형의 FlowView 차트는 %s입니다." -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "최대 흐름 수 :" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "패킷 모음" @@ -1423,721 +1447,733 @@ msgstr "플러그인 -> 플로우 뷰어" msgid "Plugin -> Flow Admin" msgstr "플러그인 -> Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "필터가 삭제되었습니다." -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "필터가 업데이트되었습니다." -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "플로우 뷰어" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "보기" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "저장" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(편집)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "작업" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d주의" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d 주" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d 개월" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "개월 % d 개월" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d 년" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "기타" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "도메인에서 제거 할 쉼표로 구분 된 도메인 이름 목록입니다." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "도메인 이름 제거" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "이름을 확인하는 데 사용되는 DNS 서버입니다." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "대체 DNS 서버" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "DNS를 해결하지 마십시오." +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "아래의 DNS 서버 사용" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "로컬 서버 사용" +#~ msgid "ST" +#~ msgstr "성" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "호스트 이름을 확인하려는 방법." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "이것은 흐름 폴더 구조의 경로를 구성하는 경로입니다." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "흐름 디렉토리" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "이것은 작업을 수행 할 임시 디렉토리의 경로입니다." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "흐름 도구 작업 디렉토리" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "flow-cat, flow-filter 및 flow-stat 바이너리의 경로." +#~ msgid "PUP" +#~ msgstr "새끼" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "흐름 도구 이진 경로" +#~ msgid "ARGUS" +#~ msgstr "아르고스" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "리스너 관리" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "장치" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "만료" +#~ msgid "CHAOS" +#~ msgstr "혼돈" #, fuzzy -#~ msgid "Compression" -#~ msgstr "압축" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "버전" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "흐름 파일을 보관하는 기간." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "만료" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "새 Flow File 생성 빈도." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "회전" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "흐름 파일의 압축 수준. 압축률을 높이면 공간이 절약되지만 결과를 저장하고 검색하는 데 더 많은 CPU가 사용됩니다." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "압축 수준" +#~ msgid "LEAF-1" +#~ msgstr "잎 - 1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "NetFlow 장치에서 사용하는 프로토콜 버전입니다." +#~ msgid "LEAF-2" +#~ msgstr "잎 - 2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow 버전" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "이 장치의 흐름에 사용할 디렉토리 구조입니다." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "중첩" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "이 장치가 흐르는 디렉토리가 있습니다.이 디렉토리는 플로우 디렉토리 경로에 있어야합니다. 전체 경로를 여기에 두지 마십시오. 또한 경로를 변경하면 사전 정의 된 파일러 설정을 다시 사용하여 경로를 다시 설정해야합니다." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "디렉토리" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (최고)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (사용 안 함)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools 태그 버전 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS 프리픽스 포트 집합" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS 접두어 집계" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS 대상 접두사 집계" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS 소스 접두어 집계" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS 프로토 포트 결합" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS 집계" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow 전체 흐름" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow 소스 대상" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow 목적지" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Route" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow 접두사 집계" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow 대상 접두사 집계" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow 소스 접두사 집계" +#~ msgid "RSVP" +#~ msgstr "초대" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow 프로토 포트 통합" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS 집계" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow 버전 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow 버전 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow 버전 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow 버전 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6 옵션" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d 분" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d 분" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d일" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "다음 경우에 포함하십시오." +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "보고서 매개 변수" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "주의:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "목적지 항구 (들)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(예 : -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "SIP IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "플로우 필터 제약" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "하나를 고르시 오" +#~ msgid "Src AS" +#~ msgstr "Src 그대로" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "지정된 시간 범위 전체" +#~ msgid "Src Prefix" +#~ msgstr "Src 접두사" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "지정된 시간 간격으로 시작 시간" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "지정된 시간 범위의 종료 시간" +#~ msgid "Src Port" +#~ msgstr "Src 포트" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "지정된 시간 범위의 모든 부품" +#~ msgid "End Date" +#~ msgstr "종료일" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "가득 차있는 (촉매)" +#~ msgid "Filter Type" +#~ msgstr "이름 필터" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "접두어 집계" +#~ msgid "View" +#~ msgstr "보기" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "대상 접두사 집계" +#~ msgid "Defaults" +#~ msgstr "기본값" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "원본 접두사 집계" +#~ msgid "Save As" +#~ msgstr "다른 이름으로 저장" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "프로토콜 포트 집계" +#~ msgid "Filter Data" +#~ msgstr "이름 필터" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS 집계" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "위 필드에는 쉼표로 구분 된 여러 필드 항목이 허용됩니다. 마이너스 기호 (-)는 항목을 무효화합니다 (예 : 포트의 경우 -80, 포트는 80이지만 포트의 경우 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "태그가있는 행 1 개" +#~ msgid "New Query" +#~ msgstr "새 쿼리" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "접두사" +#~ msgid "Update" +#~ msgstr "업데이트" #, fuzzy -#~ msgid "AS" -#~ msgstr "같이" +#~ msgid "Filter Saved" +#~ msgstr "저장된 필터" #, fuzzy -#~ msgid "Interface" -#~ msgstr "인터페이스" +#~ msgid "Filter Settings Saved" +#~ msgstr "저장된 필터 설정" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "업데이트 된 필터" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "업데이트 된 필터" +#~ msgid "Interface" +#~ msgstr "인터페이스" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "저장된 필터 설정" +#~ msgid "AS" +#~ msgstr "같이" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "저장된 필터" +#~ msgid "Prefix" +#~ msgstr "접두사" #, fuzzy -#~ msgid "Update" -#~ msgstr "업데이트" +#~ msgid "1 Line with Tags" +#~ msgstr "태그가있는 행 1 개" #, fuzzy -#~ msgid "New Query" -#~ msgstr "새 쿼리" +#~ msgid "AS Aggregation" +#~ msgstr "AS 집계" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "위 필드에는 쉼표로 구분 된 여러 필드 항목이 허용됩니다. 마이너스 기호 (-)는 항목을 무효화합니다 (예 : 포트의 경우 -80, 포트는 80이지만 포트의 경우 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "프로토콜 포트 집계" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "이름 필터" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "원본 접두사 집계" #, fuzzy -#~ msgid "Save As" -#~ msgstr "다른 이름으로 저장" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "대상 접두사 집계" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "기본값" +#~ msgid "Prefix Aggregation" +#~ msgstr "접두어 집계" #, fuzzy -#~ msgid "View" -#~ msgstr "보기" +#~ msgid "Full (Catalyst)" +#~ msgstr "가득 차있는 (촉매)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "이름 필터" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "지정된 시간 범위의 모든 부품" #, fuzzy -#~ msgid "End Date" -#~ msgstr "종료일" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "지정된 시간 범위의 종료 시간" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src 포트" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "지정된 시간 간격으로 시작 시간" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "지정된 시간 범위 전체" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src 접두사" +#~ msgid "Select One" +#~ msgstr "하나를 고르시 오" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src 그대로" +#~ msgid "Flow Filter Constraints" +#~ msgstr "플로우 필터 제약" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(예 : -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "SIP IP" +#~ msgid "Dest Port(s)" +#~ msgstr "목적지 항구 (들)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "주의:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "보고서 매개 변수" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "다음 경우에 포함하십시오." #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d일" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d 분" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d 분" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow 버전 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6 옵션" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow 버전 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow 버전 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow 버전 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS 집계" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow 프로토 포트 통합" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow 소스 접두사 집계" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow 대상 접두사 집계" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "초대" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow 접두사 집계" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow 목적지" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow 소스 대상" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow 전체 흐름" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS 집계" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS 프로토 포트 결합" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS 소스 접두어 집계" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS 대상 접두사 집계" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS 접두어 집계" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS 프리픽스 포트 집합" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools 태그 버전 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (사용 안 함)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (최고)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "디렉토리" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "이 장치가 흐르는 디렉토리가 있습니다.이 디렉토리는 플로우 디렉토리 경로에 있어야합니다. 전체 경로를 여기에 두지 마십시오. 또한 경로를 변경하면 사전 정의 된 파일러 설정을 다시 사용하여 경로를 다시 설정해야합니다." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "중첩" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "이 장치의 흐름에 사용할 디렉토리 구조입니다." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow 버전" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "NetFlow 장치에서 사용하는 프로토콜 버전입니다." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "압축 수준" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "잎 - 2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "흐름 파일의 압축 수준. 압축률을 높이면 공간이 절약되지만 결과를 저장하고 검색하는 데 더 많은 CPU가 사용됩니다." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "잎 - 1" +#~ msgid "Rotation" +#~ msgstr "회전" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "새 Flow File 생성 빈도." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "만료" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "흐름 파일을 보관하는 기간." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "버전" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "압축" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "만료" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "장치" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "혼돈" +#~ msgid "Manage Listeners" +#~ msgstr "리스너 관리" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "흐름 도구 이진 경로" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "flow-cat, flow-filter 및 flow-stat 바이너리의 경로." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "아르고스" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "흐름 도구 작업 디렉토리" #, fuzzy -#~ msgid "PUP" -#~ msgstr "새끼" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "이것은 작업을 수행 할 임시 디렉토리의 경로입니다." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "흐름 디렉토리" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "이것은 흐름 폴더 구조의 경로를 구성하는 경로입니다." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "호스트 이름을 확인하려는 방법." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "로컬 서버 사용" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "아래의 DNS 서버 사용" #, fuzzy -#~ msgid "ST" -#~ msgstr "성" +#~ msgid "Don't Resolve DNS" +#~ msgstr "DNS를 해결하지 마십시오." #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "대체 DNS 서버" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "이름을 확인하는 데 사용되는 DNS 서버입니다." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "도메인 이름 제거" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "도메인에서 제거 할 쉼표로 구분 된 도메인 이름 목록입니다." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "새로운 흐름" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "보고서 인쇄" diff --git a/locales/po/nl-NL.po b/locales/po/nl-NL.po index 63b5d84..a787c86 100644 --- a/locales/po/nl-NL.po +++ b/locales/po/nl-NL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:29-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP/TCP-bronpoort" msgid "UDP/TCP Port" msgstr "UDP/TCP-poort" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Bron IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Bestemming IP" @@ -98,13 +98,13 @@ msgstr "Outputinterface" msgid "Input/Output Interface" msgstr "Input/Output Interface" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Data bron" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Log bestemming" @@ -119,7 +119,7 @@ msgstr "Bron/bestemming AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Bron Voorvoegsel" @@ -193,7 +193,7 @@ msgstr "Draaitijd" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Alle" @@ -207,7 +207,7 @@ msgstr "Bron Haven(s)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Stromen" @@ -216,8 +216,8 @@ msgstr "Stromen" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Gemiddeld aantal bytes/rij:" @@ -226,8 +226,8 @@ msgstr "Gemiddeld aantal bytes/rij:" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Pakketten" @@ -243,18 +243,18 @@ msgstr "Bestemming IP" msgid "Port" msgstr "Poort" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Dest IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "E-mail adressen" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "SNMP Auth protocol (v3)" @@ -279,290 +279,295 @@ msgstr "Gebruikersvoorwaarden" msgid "Destingation Prefix" msgstr "Bestemming Voorvoegsel" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Bron IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Bestemming IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Bron Haven(s)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Bestemming IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Laatste starttijd:" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Eindtijd" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Actief" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Markeringen" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Bron IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Bestemming IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Stel filters opnieuw in" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filter" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filter" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Luisteraar" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Voorinstellingen" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Verslag: nieuw" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Gedrukt:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Statistieken" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Statistieken Rapporten" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Rapporten afdrukken" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Beheer schema's" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Adressen oplossen:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Adressen oplossen:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Ja" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Nee" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Veld sorteren:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Minimumbytes:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protocollen" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protocollen" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP-vlaggen" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOS-velden" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Bron Haven(s)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Bron Interface" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Dest Haven" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Dest Interface" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Apparaat [nieuw]" msgid "FlowView Listeners" msgstr "FlowView Luisteraars" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Zoeken" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Ga" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Stel in/vernieuw filters" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Herstel" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Stel filters opnieuw in" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Luisteraars" @@ -750,34 +755,38 @@ msgstr "Klik op 'Doorgaan' om de volgende planning(en) in te schakelen." msgid "You must select at least one Filter." msgstr "U moet ten minste één apparaat selecteren." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Debietfilters" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Stel in/vernieuw filters" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Standaard" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Filternaam" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Hostnaam Resolutie" @@ -828,7 +837,7 @@ msgstr "Nieuw schema" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Voer een rapporttitel in voor het FlowView Schema." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Ingeschakeld" @@ -903,18 +912,22 @@ msgstr "Verslag: bewerken: %s]" msgid "Report: [new]" msgstr "Verslag: nieuw" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Startdatum selector" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView schema's" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Agenda’s" @@ -924,22 +937,22 @@ msgstr "Agenda’s" msgid "Schedule Title" msgstr "Tijdschema Titel" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Interval" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Startdatum" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Volgende verzenden" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "E-mail" @@ -959,25 +972,20 @@ msgstr "Verslag: bewerken: %s]" msgid "Filter: [new]" msgstr "Verslag: nieuw" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Rapporten afdrukken" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Rapporten afdrukken" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Aangepast" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Einddatum selector" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Toon/Verberg" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Het was niet mogelijk om de tabel status op te halen" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bytes Bar" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Pakketten Bar" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Stromen Bar" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Onbekend" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cactus Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netto stroom - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Nieuwe stroom" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Data bron" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Data bron" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Dest Haven" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Dest Haven" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Dest Voorvoegsel" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Pakketten" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Samenvatting Statistieken" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP Pakketgrootteverdeling (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Pakketten per stroomverdeling (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Octetten per stroomverdeling (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Stroomtijdverdeling (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "U moet een Statistisch rapport of een afgedrukt rapport selecteren!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "U moet alleen een Statistisch rapport of een afgedrukt rapport selecteren (niet beide)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Ongeldige data, Einddatum/-tijd is vroeger dan de begindatum/-tijd!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Ongeldig IP voor het bronadres
(Moet in de vorm van '192.168.0.1' zijn)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Ongeldig subnet voor het bronadres
(Moet in de vorm van '192.168.0.1/255.255.255.255.255.0' of '192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Ongeldig IP voor het bestemmingsadres
(Moet in de vorm van '192.168.0.1' zijn)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Ongeldig subnet voor het bestemmingsadres
(Moet in de vorm van '192.168.0.1/255.255.255.255.255.0' of '192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Ongeldige waarde voor Source Interface!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Ongeldige waarde voor Source Port! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Ongeldige waarde voor Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Ongeldige waarde voor bestemmingsinterface!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Ongeldige waarde voor Destination Port! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Ongeldige waarde voor Bestemming AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Ongeldige waarde voor Protocol! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Ongeldige waarde voor TCP-vlag! (ex: 0x1b of 0x1b/SA of SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Ongeldige waarde voor Cutoff Octets!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Ongeldige waarde voor Cutoff Lines!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Ongeldige waarde voor Sorteerveld!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Stroomdiagram voor %s Type is %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Max Flows:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Pakketten Bar" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Flow Viewer" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Het filter is verwijderd" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Het filter is bijgewerkt" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Flow Viewer" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Weergeven" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Opslaan" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Wijzig)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Acties" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d Week" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d Weken" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Maand" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d Maanden" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d Jaar" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Diversen" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Een door komma's afgebakende lijst van domeinnamen die van het domein moeten worden gestript." +#~ msgid "TCP" +#~ msgstr "TCP poort voor beveiligde communicatie." #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Strip Domeinnamen" +#~ msgid "UDP" +#~ msgstr "UDP ping fout: %s" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Dit is de DNS-server die wordt gebruikt om namen op te lossen." +#~ msgid "ICMP" +#~ msgstr "ICMP ping timed out" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Alternatieve DNS-server" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "DNS niet oplossen" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Gebruik DNS-server Hieronder" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Gebruik lokale server" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "De methode waarmee u hostnamen wilt oplossen." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Dit is het pad om het pad van uw flow-mapstructuur te bepalen." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Stromen Directory" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Dit is het pad naar een tijdelijke directory om te werken." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Flow Tools Work Directory" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "De weg naar je flow-cat, flow-filter en flow-stat binair." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Stroomgereedschappen Binair pad" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Luisteraars beheren" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Apparaten" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Laat inactieve accounts vervallen" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Compressie" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Versie" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Hoe lang u uw stroombestanden moet bewaren." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Vervaldatum" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Hoe vaak maakt u een nieuw Flow File aan." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotatie" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Compressieniveau van flowbestanden. Hogere compressie bespaart ruimte, maar gebruikt meer CPU om resultaten op te slaan en op te halen." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Compressieniveau" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "NetFlow Protocol versie gebruikt door het apparaat." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow Versie" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Directory Structuur die zal worden gebruikt voor de stromen voor dit apparaat." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nestelen" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Directory waar deze apparaten zich in bevinden. Deze directory moet zich in het pad Flow Directory bevinden. Zet hier niet het volledige pad. Ook niet dat, als je het pad verandert, alle voorgedefinieerde bestandsinstellingen om het te gebruiken opnieuw moeten worden opgeslagen." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Het pad is een directorie en geen bestand" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Hoogste)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Uitgeschakeld)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools getagd versie 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS Prefix Port Aggregation" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS Prefix Aggregatie" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Bestemming Voorafgaand aan Bestemming Voorafgaande Aggregatie" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS Source Prefix Aggregation" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Proto Port Aggregation" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Aggregatie" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow Bron Bestemming" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow Bestemming" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-route" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow Prefix Aggregatie" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow Destination Prefix Aggregation" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow-bronvoorvoegselaggregatie" +#~ msgid "RSVP" +#~ msgstr "Aanmelden" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow Proto Port Aggregatie" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS Aggregatie" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow versie 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow versie 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow versie 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-nr." #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow versie 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d Minuten" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minuut" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Dagen" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Moet tenminste 1 getal bevatten" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Rapportageparameters" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Let wel, we konden niet al uw acties verwerken. Details vindt u hieronder." +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Beste haven(s)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(b.v. -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Flow Filter Beperkingen" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Selecteer een van de beschikbare thema's om Cacti in weer te geven." +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Geheel in de opgegeven tijdspanne" +#~ msgid "Src Prefix" +#~ msgstr "Src Voorvoegsel" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Begintijd in de opgegeven tijdspanne" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Eindtijd in gespecificeerde tijdspanne" +#~ msgid "Src Port" +#~ msgstr "Src-poort" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Om het even welk Deel in Gespecificeerde Tijdspanne" +#~ msgid "End Date" +#~ msgstr "Einddatum" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Volledig (Katalysator)" +#~ msgid "Filter Type" +#~ msgstr "Filternaam" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Voorvoegsel Aggregatie" +#~ msgid "View" +#~ msgstr "Weergeven" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Bestemming Prefix Aggregatie" +#~ msgid "Defaults" +#~ msgstr "Stel velden opnieuw in" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Bron voorvoegselaggregatie" +#~ msgid "Save As" +#~ msgstr "Opslaan als" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Protocol havenaggregatie" +#~ msgid "Filter Data" +#~ msgstr "Filternaam" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "Aggregatie niveau" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " Meerdere velden, gescheiden door komma's, zijn toegestaan in de bovenstaande velden. Een minteken (-) zal een invoer ontkennen (bijv. -80 voor Port, betekent elke Port behalve 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 lijn met tags" +#~ msgid "New Query" +#~ msgstr "Nieuwe vraag" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Voorvoegsel" +#~ msgid "Update" +#~ msgstr "Bijwerken" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "Filter opgeslagen" #, fuzzy -#~ msgid "Interface" -#~ msgstr "%s - WEBUI: Cacti log geleegd vanaf de webinterface." +#~ msgid "Filter Settings Saved" +#~ msgstr "Filter instellingen opgeslagen" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filter bijgewerkt" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filter bijgewerkt" +#~ msgid "Interface" +#~ msgstr "%s - WEBUI: Cacti log geleegd vanaf de webinterface." #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Filter instellingen opgeslagen" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filter opgeslagen" +#~ msgid "Prefix" +#~ msgstr "Voorvoegsel" #, fuzzy -#~ msgid "Update" -#~ msgstr "Bijwerken" +#~ msgid "1 Line with Tags" +#~ msgstr "1 lijn met tags" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nieuwe vraag" +#~ msgid "AS Aggregation" +#~ msgstr "Aggregatie niveau" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " Meerdere velden, gescheiden door komma's, zijn toegestaan in de bovenstaande velden. Een minteken (-) zal een invoer ontkennen (bijv. -80 voor Port, betekent elke Port behalve 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Protocol havenaggregatie" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Filternaam" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Bron voorvoegselaggregatie" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Opslaan als" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Bestemming Prefix Aggregatie" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Stel velden opnieuw in" +#~ msgid "Prefix Aggregation" +#~ msgstr "Voorvoegsel Aggregatie" #, fuzzy -#~ msgid "View" -#~ msgstr "Weergeven" +#~ msgid "Full (Catalyst)" +#~ msgstr "Volledig (Katalysator)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Filternaam" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Om het even welk Deel in Gespecificeerde Tijdspanne" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Einddatum" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Eindtijd in gespecificeerde tijdspanne" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src-poort" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Begintijd in de opgegeven tijdspanne" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Geheel in de opgegeven tijdspanne" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src Voorvoegsel" +#~ msgid "Select One" +#~ msgstr "Selecteer een van de beschikbare thema's om Cacti in weer te geven." #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Flow Filter Beperkingen" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(b.v. -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Beste haven(s)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Let wel, we konden niet al uw acties verwerken. Details vindt u hieronder." #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Rapportageparameters" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Moet tenminste 1 getal bevatten" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Dagen" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Minuut" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d Minuten" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow versie 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow versie 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-nr." +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow versie 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow versie 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS Aggregatie" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow Proto Port Aggregatie" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow-bronvoorvoegselaggregatie" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow Destination Prefix Aggregation" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Aanmelden" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow Prefix Aggregatie" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow Bestemming" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow Bron Bestemming" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Aggregatie" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Proto Port Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS Source Prefix Aggregation" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Bestemming Voorafgaand aan Bestemming Voorafgaande Aggregatie" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS Prefix Aggregatie" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS Prefix Port Aggregation" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools getagd versie 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Uitgeschakeld)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Hoogste)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Het pad is een directorie en geen bestand" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Directory waar deze apparaten zich in bevinden. Deze directory moet zich in het pad Flow Directory bevinden. Zet hier niet het volledige pad. Ook niet dat, als je het pad verandert, alle voorgedefinieerde bestandsinstellingen om het te gebruiken opnieuw moeten worden opgeslagen." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nestelen" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Directory Structuur die zal worden gebruikt voor de stromen voor dit apparaat." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow Versie" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "NetFlow Protocol versie gebruikt door het apparaat." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "Compressieniveau" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Compressieniveau van flowbestanden. Hogere compressie bespaart ruimte, maar gebruikt meer CPU om resultaten op te slaan en op te halen." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Rotatie" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Hoe vaak maakt u een nieuw Flow File aan." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Vervaldatum" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Hoe lang u uw stroombestanden moet bewaren." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Versie" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Compressie" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Laat inactieve accounts vervallen" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Apparaten" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Luisteraars beheren" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Stroomgereedschappen Binair pad" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "De weg naar je flow-cat, flow-filter en flow-stat binair." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Flow Tools Work Directory" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Dit is het pad naar een tijdelijke directory om te werken." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Stromen Directory" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Dit is het pad om het pad van uw flow-mapstructuur te bepalen." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "De methode waarmee u hostnamen wilt oplossen." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Gebruik lokale server" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Gebruik DNS-server Hieronder" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "DNS niet oplossen" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Alternatieve DNS-server" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Dit is de DNS-server die wordt gebruikt om namen op te lossen." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Strip Domeinnamen" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP ping timed out" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Een door komma's afgebakende lijst van domeinnamen die van het domein moeten worden gestript." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP ping fout: %s" +#~ msgid "New Flow" +#~ msgstr "Nieuwe stroom" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP poort voor beveiligde communicatie." +#~ msgid "Select a Filter to display data" +#~ msgstr "Rapporten afdrukken" diff --git a/locales/po/pl-PL.po b/locales/po/pl-PL.po index 442c858..1003556 100644 --- a/locales/po/pl-PL.po +++ b/locales/po/pl-PL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-07-13 04:14+0000\n" "Last-Translator: Jaroslaw Kłopotek \n" "Language-Team: Polish \n" @@ -58,13 +58,13 @@ msgstr "Port źródłowy UDP/TCP" msgid "UDP/TCP Port" msgstr "Port UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP źródłowe" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Miejsce przeznaczenia IP" @@ -99,13 +99,13 @@ msgstr "Interfejs wyjściowy" msgid "Input/Output Interface" msgstr "Interfejs wejścia/wyjścia" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Typ źródła" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Miejsce przeznaczenia AS" @@ -120,7 +120,7 @@ msgstr "Źródło/przeznaczenie AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Źródło: Prefiks źródłowy" @@ -194,7 +194,7 @@ msgstr "Brak limitu" msgid "%s Bytes" msgstr "%s Bajty" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Wszystkie" @@ -208,7 +208,7 @@ msgstr "Źródło: Port(-y) źródłowy(-e)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Przepływy" @@ -217,8 +217,8 @@ msgstr "Przepływy" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bajty" @@ -227,8 +227,8 @@ msgstr "Bajty" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Pakiety" @@ -244,18 +244,18 @@ msgstr "Miejsce przeznaczenia IP" msgid "Port" msgstr "Port" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Gniazdo IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Adresy e-mail" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Protokół" @@ -280,290 +280,295 @@ msgstr "OWU" msgid "Destingation Prefix" msgstr "Prefiks miejsca przeznaczenia" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP źródłowe" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Miejsce przeznaczenia IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Źródło: Port(-y) źródłowy(-e)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Miejsce przeznaczenia IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Czas rozpoczęcia" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Czas zakończenia" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Aktywny" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Flagi" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP źródłowe" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Miejsce przeznaczenia IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Filtry przezroczyste" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtr" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtr" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Słuchacz" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Presets" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Raport: nowy] [nowy]." -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Wydrukowano:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Statystyki" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Sprawozdania statystyczne" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Drukowanie raportów" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Harmonogramy zarządzania" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Rozwiąż adresy:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Rozwiąż adresy:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Tak" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Nie" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Sortuj pole:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Minimalne bajty:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protokoły" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protokoły" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Flagi TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Pola TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Źródło: Port(-y) źródłowy(-e)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Interfejs źródłowy" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Port docelowy" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Interfejs gniazdo" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -643,33 +648,33 @@ msgstr "Urządzenie [nowe]" msgid "FlowView Listeners" msgstr "FlowView Listeners" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 msgid "Search" msgstr "Szukaj" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Idź" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Ustawianie/odświeżanie filtrów" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Wyczyść" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Filtry przezroczyste" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Słuchawki" @@ -748,34 +753,38 @@ msgstr "Kliknąć 'Kontynuuj', aby włączyć następujące harmonogramy." msgid "You must select at least one Filter." msgstr "Należy wybrać co najmniej jedno urządzenie." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Filtry przepływowe" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filtry" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Domyślny" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Nazwa filtra" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Rozdzielczość nazwy hosta" @@ -826,7 +835,7 @@ msgstr "Nowy harmonogram" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Wprowadź tytuł raportu dla harmonogramu widoku przepływu." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Włączone" @@ -901,18 +910,22 @@ msgstr "Raport: [edytuj: %s] [edytuj: %s]." msgid "Report: [new]" msgstr "Raport: nowy] [nowy]." -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Wybór daty rozpoczęcia" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Harmonogramy FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Harmonogram" @@ -922,22 +935,22 @@ msgstr "Harmonogram" msgid "Schedule Title" msgstr "Tytuł harmonogram" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Okres" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Data rozpoczęcia" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Następne do wysłania" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Email" @@ -957,25 +970,20 @@ msgstr "Raport: [edytuj: %s] [edytuj: %s]." msgid "Filter: [new]" msgstr "Raport: nowy] [nowy]." -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Drukowanie raportów" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1073,338 +1081,354 @@ msgstr "Drukowanie raportów" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Własny" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Wybór daty końcowej" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Pokaż/Ukryj" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tabela" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bajtes Bar" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Pakiety Bar" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Przepływy Bar" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Nieznany" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Przepływ netto - %." -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Nowy przepływ" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bajty" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bajty" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Typ źródła" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Typ źródła" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Port docelowy" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Port docelowy" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Gniazdo IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Przedrostek gniazda" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Pakiety" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Podsumowujące dane statystyczne" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Rozkład wielkości pakietu IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Pakiety na dystrybucję przepływu (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Oktety na rozkład przepływu (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Rozkład czasu przepływu (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Musisz wybrać raport statystyczny lub raport wydrukowany!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Musisz wybrać tylko raport statystyczny lub raport wydrukowany (nie oba)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Nieważne daty, Data/godzina jest wcześniejsza niż Data/godzina rozpoczęcia!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Nieprawidłowy adres IP dla adresu źródłowego!
(Musi mieć formę '192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Nieprawidłowa podsieć dla adresu źródłowego!
(Musi mieć postać '192.168.0.0.1/255.255.255.0' lub '192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Nieprawidłowy adres IP dla adresu docelowego!
(Musi mieć postać '192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Nieprawidłowa podsieć dla adresu docelowego!
(Musi mieć postać '192.168.0.0.1/255.255.255.0' lub '192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Nieważna wartość dla interfejsu źródłowego!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Nieprawidłowa wartość dla portu źródłowego! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Nieważna wartość dla Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Nieważna wartość dla interfejsu docelowego!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Nieprawidłowa wartość dla portu docelowego! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Nieważna wartość dla Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Nieważna wartość dla Protokołu! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Nieprawidłowa wartość dla flagi TCP Flag! (ex: 0x1b lub 0x1b/SA lub SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Nieprawidłowa wartość dla Octetów Cutoff!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Nieprawidłowa wartość dla linii odcięcia!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Nieważna wartość dla Sort Field!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Wykres FlowView dla %s Typ %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Maks. przepływy:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Pakiety Bar" @@ -1419,720 +1443,732 @@ msgstr "Plugin -> Flow Viewer" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Filtr został usunięty" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Filtr został zaktualizowany" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Przeglądarka przepływowa" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Zobacz" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Zapisz" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Edytuj)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Akcje" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d Tydzień" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d tygodni" -#: setup.php:312 +#: setup.php:321 #, php-format msgid "%d Month" msgstr "%d miesiąc" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, php-format msgid "%d Months" msgstr "%d miesiące" -#: setup.php:317 +#: setup.php:326 #, php-format msgid "%d Year" msgstr "%d rok" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Różne" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Przecinek ograniczał listę nazw domen do usunięcia z domeny." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Nazwy domen pasków" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Jest to serwer DNS używany do rozwiązywania nazw." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Alternatywny serwer DNS" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Nie rozwiązuj DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Użyj serwera DNS poniżej" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Użyj lokalnego serwera." +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Metoda, przy pomocy której chcesz rozwiązać problem nazw hostów." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Jest to ścieżka do bazy ścieżki struktury folderów przepływu." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Katalog przepływów" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Jest to ścieżka do tymczasowego katalogu do pracy." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Katalog roboczy narzędzi przepływowych" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Droga do kota przepływowego, filtra przepływowego i binarnego stanu przepływu." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Narzędzia przepływowe Ścieżka binarna" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Zarządzaj słuchaczami" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Urządzenia" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Wygasa" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Kompresja" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Wersja" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Jak długo należy przechowywać pliki przepływu." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Data wygaśnięcia" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Jak często tworzyć nowy plik przepływu." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotacja" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Poziom kompresji plików przepływu. Wyższa kompresja oszczędza miejsce, ale wykorzystuje więcej CPU do przechowywania i pobierania wyników." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Poziom kompresji" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Wersja protokołu NetFlow Protocol używana przez urządzenie." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Wersja NetFlow" +#~ msgid "RDP" +#~ msgstr "PROW" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Struktura katalogowa, która będzie wykorzystywana dla przepływów dla tego urządzenia." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nesting" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Katalog, w którym znajdują się te urządzenia. Katalog ten musi znajdować się w ścieżce Flow Directory. Nie umieszczajcie tu pełnej ścieżki. Ponadto, nie, że jeśli zmienisz ścieżkę, wszystkie predefiniowane ustawienia filtra do użycia będą musiały zostać ponownie zapisane." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Katalog" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (najwyższy)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (niepełnosprawni)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Narzędzia przepływowe oznaczone wersja 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Agregacja portów NetFlow ToS Prefix" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS Prefiks Agregacja" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS - cel podróży Prefiks Agregacja" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS Źródło NetFlow ToS Prefiks Agregacja" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Agregacja portów Proto" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Agregacja" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Pełny przepływ netto" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Źródło nettoFlow Źródło docelowe" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Miejsce przeznaczenia netto" +#~ msgid "IPv6-Route" +#~ msgstr "Trasa IPv6" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Agregacja NetFlow Prefix" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow Destination Prefix Agregacja" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow Source Prefix Agregacja przedwzmacniacza" +#~ msgid "RSVP" +#~ msgstr "Zgłoszenie uczestnictwa" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Agregacja NetFlow Proto Port" +#~ msgid "GRE" +#~ msgstr "GRUPA" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Agregacja NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow wersja 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow wersja 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow wersja 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNex" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow wersja 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d minut" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minuta" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d dni" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Uwzględnić, jeśli:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Parametry raportu" +#~ msgid "MTP" +#~ msgstr "MIĘDZYNARODOWE TARGI POZNAŃSKIE" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Uwaga:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Port(-y) głęboki(-e)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(np. -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Adres IP łuku" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Ograniczenia filtra przepływowego" +#~ msgid "Src/Dest IP" +#~ msgstr "Łuk/gniazdo IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Wybierz jeden" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "W całości w określonym zakresie czasowym" +#~ msgid "Src Prefix" +#~ msgstr "Prefiks łuku" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Czas rozpoczęcia w określonym zakresie czasowym" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Czas zakończenia w określonym zakresie czasowym" +#~ msgid "Src Port" +#~ msgstr "Port łuku" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Dowolna część w określonym zakresie czasowym" +#~ msgid "End Date" +#~ msgstr "Data zakończenia" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Pełny (Katalizator)" +#~ msgid "Filter Type" +#~ msgstr "Nazwa filtra" + +#~ msgid "View" +#~ msgstr "Podgląd" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Agregacja przedrostkowa" +#~ msgid "Defaults" +#~ msgstr "Domyślne" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Miejsce przeznaczenia Agregacja prefiksów" +#~ msgid "Save As" +#~ msgstr "Zapisz jako" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Prefiks źródłowy Agregacja" +#~ msgid "Filter Data" +#~ msgstr "Nazwa filtra" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Protokół Agregacja portów" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " W polach powyżej dozwolone są wielokrotne wpisy w polach, oddzielone przecinkami. Znak minus (-) zaneguje wpis (np. -80 dla portu, oznaczałby każdy port oprócz portu 80)" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS Agregacja" +#~ msgid "New Query" +#~ msgstr "Nowe zapytanie" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 Linia z tagami" +#~ msgid "Update" +#~ msgstr "Aktualizuj" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Prefiks" +#~ msgid "Filter Saved" +#~ msgstr "Zapisany filtr" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Settings Saved" +#~ msgstr "Zapisane ustawienia filtra" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Interfejs" +#~ msgid "Filter Updated" +#~ msgstr "Aktualizacja filtra" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Aktualizacja filtra" +#~ msgid "Interface" +#~ msgstr "Interfejs" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Zapisane ustawienia filtra" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Zapisany filtr" +#~ msgid "Prefix" +#~ msgstr "Prefiks" #, fuzzy -#~ msgid "Update" -#~ msgstr "Aktualizuj" +#~ msgid "1 Line with Tags" +#~ msgstr "1 Linia z tagami" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nowe zapytanie" +#~ msgid "AS Aggregation" +#~ msgstr "AS Agregacja" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " W polach powyżej dozwolone są wielokrotne wpisy w polach, oddzielone przecinkami. Znak minus (-) zaneguje wpis (np. -80 dla portu, oznaczałby każdy port oprócz portu 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Protokół Agregacja portów" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Nazwa filtra" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Prefiks źródłowy Agregacja" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Zapisz jako" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Miejsce przeznaczenia Agregacja prefiksów" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Domyślne" +#~ msgid "Prefix Aggregation" +#~ msgstr "Agregacja przedrostkowa" -#~ msgid "View" -#~ msgstr "Podgląd" +#, fuzzy +#~ msgid "Full (Catalyst)" +#~ msgstr "Pełny (Katalizator)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Nazwa filtra" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Dowolna część w określonym zakresie czasowym" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Data zakończenia" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Czas zakończenia w określonym zakresie czasowym" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Port łuku" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Czas rozpoczęcia w określonym zakresie czasowym" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "W całości w określonym zakresie czasowym" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Prefiks łuku" +#~ msgid "Select One" +#~ msgstr "Wybierz jeden" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Ograniczenia filtra przepływowego" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Łuk/gniazdo IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(np. -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Adres IP łuku" +#~ msgid "Dest Port(s)" +#~ msgstr "Port(-y) głęboki(-e)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Uwaga:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Parametry raportu" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MIĘDZYNARODOWE TARGI POZNAŃSKIE" +#~ msgid "Include if:" +#~ msgstr "Uwzględnić, jeśli:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d dni" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Minuta" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d minut" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow wersja 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow wersja 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNex" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow wersja 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow wersja 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Agregacja NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Agregacja NetFlow Proto Port" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow Source Prefix Agregacja przedwzmacniacza" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRUPA" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow Destination Prefix Agregacja" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Zgłoszenie uczestnictwa" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Agregacja NetFlow Prefix" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Miejsce przeznaczenia netto" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Źródło nettoFlow Źródło docelowe" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "Trasa IPv6" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Pełny przepływ netto" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Agregacja" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Agregacja portów Proto" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS Źródło NetFlow ToS Prefiks Agregacja" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS - cel podróży Prefiks Agregacja" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS Prefiks Agregacja" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Agregacja portów NetFlow ToS Prefix" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Narzędzia przepływowe oznaczone wersja 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (niepełnosprawni)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (najwyższy)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Katalog" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Katalog, w którym znajdują się te urządzenia. Katalog ten musi znajdować się w ścieżce Flow Directory. Nie umieszczajcie tu pełnej ścieżki. Ponadto, nie, że jeśli zmienisz ścieżkę, wszystkie predefiniowane ustawienia filtra do użycia będą musiały zostać ponownie zapisane." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nesting" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Struktura katalogowa, która będzie wykorzystywana dla przepływów dla tego urządzenia." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Wersja NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Wersja protokołu NetFlow Protocol używana przez urządzenie." #, fuzzy -#~ msgid "RDP" -#~ msgstr "PROW" +#~ msgid "Compression Level" +#~ msgstr "Poziom kompresji" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Poziom kompresji plików przepływu. Wyższa kompresja oszczędza miejsce, ale wykorzystuje więcej CPU do przechowywania i pobierania wyników." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Rotacja" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Jak często tworzyć nowy plik przepływu." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Data wygaśnięcia" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Jak długo należy przechowywać pliki przepływu." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Wersja" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Kompresja" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Wygasa" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Urządzenia" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Zarządzaj słuchaczami" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Narzędzia przepływowe Ścieżka binarna" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Droga do kota przepływowego, filtra przepływowego i binarnego stanu przepływu." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Katalog roboczy narzędzi przepływowych" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Jest to ścieżka do tymczasowego katalogu do pracy." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Katalog przepływów" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Jest to ścieżka do bazy ścieżki struktury folderów przepływu." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Metoda, przy pomocy której chcesz rozwiązać problem nazw hostów." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Użyj lokalnego serwera." #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Użyj serwera DNS poniżej" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Nie rozwiązuj DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Alternatywny serwer DNS" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Jest to serwer DNS używany do rozwiązywania nazw." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Nazwy domen pasków" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Przecinek ograniczał listę nazw domen do usunięcia z domeny." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Nowy przepływ" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Drukowanie raportów" diff --git a/locales/po/pt-BR.po b/locales/po/pt-BR.po index fdfc048..7dddf3c 100644 --- a/locales/po/pt-BR.po +++ b/locales/po/pt-BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:34-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "Porta de origem UDP/TCP" msgid "UDP/TCP Port" msgstr "Porto UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP de origem" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "IP de Destino" @@ -98,13 +98,13 @@ msgstr "Interface de saída" msgid "Input/Output Interface" msgstr "Interface de entrada/saída" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Origem dos dados" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Destino AS" @@ -119,7 +119,7 @@ msgstr "Fonte/Destino AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Prefixo da fonte" @@ -193,7 +193,7 @@ msgstr "Sem Limite" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Todos" @@ -207,7 +207,7 @@ msgstr "Porta(s) de origem" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Fluxos" @@ -216,8 +216,8 @@ msgstr "Fluxos" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Pacotes" @@ -243,18 +243,18 @@ msgstr "IP de Destino" msgid "Port" msgstr "Porta" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Destino IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Endereço de Email" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Protocolo" @@ -279,290 +279,295 @@ msgstr "TOS" msgid "Destingation Prefix" msgstr "Prefixo de Destino" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP de origem" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "IP de Destino" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Porta(s) de origem" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "IP de Destino" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Hora de início" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Hora Fim" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Ativo" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Marcações" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP de origem" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "IP de Destino" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Limpar Filtros" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtro" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtro" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Ouvinte" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Predefinições" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Relatório: [novo]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Impresso:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Estatísticas" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Relatórios Estatísticos" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Imprimir relatórios" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Agendamentos" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Resolver Endereços:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Resolver Endereços:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Sim" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Não" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Sort Field:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Bytes mínimos:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protocolos" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protocolos" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Marcadores TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Campos TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Porta(s) de origem" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Interface de fonte" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Porto de destino" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Interface Destino" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Destino AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Dispositivo [novo]" msgid "FlowView Listeners" msgstr "Escutadores FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Pesquisar" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Ir" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Filtros Set/Refresh" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Limpar" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Limpar Filtros" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Ouvintes" @@ -750,34 +755,38 @@ msgstr "Clique em 'Continuar' para ativar o(s) seguinte(s) horário(s)." msgid "You must select at least one Filter." msgstr "Você deve selecionar pelo menos um dispositivo." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Filtros de fluxo" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filtros" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Padrão" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Nome do filtro" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Resolução de Hostname" @@ -828,7 +837,7 @@ msgstr "Novo Horário" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Introduza um título de relatório para o programa FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Ativado" @@ -903,18 +912,22 @@ msgstr "Relatório: [editar: %s]" msgid "Report: [new]" msgstr "Relatório: [novo]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Seletor de data de início" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Horários FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Horários" @@ -924,22 +937,22 @@ msgstr "Horários" msgid "Schedule Title" msgstr "Título da Programação" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Intervalo" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Data de Início" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Próximo Enviar" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "E-mail" @@ -959,25 +972,20 @@ msgstr "Relatório: [editar: %s]" msgid "Filter: [new]" msgstr "Relatório: [novo]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Imprimir relatórios" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Imprimir relatórios" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Personalizado" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Seletor de data final" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Exibir/ocultar" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tabela" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bar Bytes" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Barra de Pacotes" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Barra de Fluxos" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Desconhecido" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Fluxo líquido - % (%)" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Novo Fluxo" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Origem dos dados" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Origem dos dados" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Destino AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Porto de destino" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Porto de destino" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Destino IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Prefixo de Destino" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Pacotes" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Estatísticas Sumárias" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Distribuição do tamanho do pacote IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Pacotes por Distribuição de Fluxo (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Octetos por Distribuição de Fluxo (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Distribuição do tempo de fluxo (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Você deve selecionar um Relatório de estatísticas ou Relatório impresso!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Você deve selecionar apenas um Relatório de estatísticas ou um Relatório impresso (não ambos)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Datas inválidas, Data/Hora de fim é anterior à Data/Hora de início!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "IP inválido para o endereço de origem!
(Deve ser na forma de '192.168.0.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sub-rede inválida para o endereço de origem!
(Deve ser na forma de '192.168.0.1/255.255.255.255.0' ou '192.168.0.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "IP inválido para o endereço de destino!
(Deve ser na forma de '192.168.0.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sub-rede inválida para o endereço de destino!
(Deve ser na forma de '192.168.0.1/255.255.255.255.0' ou '192.168.0.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Valor inválido para Interface de Fonte!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Valor inválido para a porta de origem! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Valor inválido para Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Valor inválido para a interface de destino!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Valor inválido para o Porto de Destino! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Valor inválido para Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Valor inválido para o Protocolo! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Valor inválido para o TCP Flag! (ex: 0x1b ou 0x1b/SA ou SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Valor inválido para octetos de corte!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Valor inválido para linhas de corte!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Valor inválido para Sort Field!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Gráfico FlowView para %s Tipo é %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Max Flows:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Barra de Pacotes" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Visualizador de Fluxo" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Fluxo Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "O filtro foi eliminado" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "O filtro foi atualizado" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Visor de fluxo" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Ver" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Salvar" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Editar)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Ações" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d Semana" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d Semanas" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Mes" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d Meses" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d Ano" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Diversos" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Uma lista delimitada por vírgulas de nomes de domínios a serem removidos do domínio." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Nomes de Domínio Strip" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Este é o servidor DNS usado para resolver nomes." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Servidor DNS alternativo" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Não Resolver DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Use o servidor DNS abaixo" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Usar Servidor Local" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "O método pelo qual você deseja resolver nomes de host." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Este é o caminho para basear o caminho da estrutura da pasta de fluxo." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Diretório de Fluxos" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Este é o caminho para um diretório temporário para fazer o trabalho." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Diretório de Trabalho de Ferramentas de Fluxo" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "O caminho para o seu gato de fluxo, filtro de fluxo e binário de fluxo." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Ferramentas de Fluxo Caminho Binário" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Gerenciar ouvintes" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Dispositivos" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Expirar" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Compressão" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Versão" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Quanto tempo para manter seus arquivos de fluxo." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Expiração" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Com que frequência criar um novo ficheiro de fluxo." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotação" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Nível de compressão dos arquivos de fluxo. Maior compactação economiza espaço, mas usa mais CPU para armazenar e recuperar resultados." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Nível de compressão" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Versão do Protocolo NetFlow utilizada pelo dispositivo." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Versão NetFlow" +#~ msgid "RDP" +#~ msgstr "PDR" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Estrutura de Diretório que será usada para os fluxos deste dispositivo." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nidificação" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Diretório em que estes dispositivos fluem. Esse diretório deve estar no caminho do diretório de fluxo. Não ponha o caminho completo aqui. Também, não que se você alterar o caminho, toda a configuração predefinida do filer para usá-lo terá que ser salva novamente." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Diretório" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Mais alto)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Desativado)" +#~ msgid "DCCP" +#~ msgstr "PCDC" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools versão etiquetada 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Agregação de portas do prefixo NetFlow ToS" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Agregação de prefixos do NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "Agregação do Prefixo de Destino do NetFlow ToS" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Agregação do Prefixo do NetFlow ToS Source" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "Agregação de Porto de Proto do NetFlow ToS Proto" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS como agregação" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Fluxo total" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Destino da Fonte de Fluxo Líquido" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Destino NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "Rota IPv6" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Agregação de prefixos NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Agregação do Prefixo de Destino do NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Agregação de Prefixos de Fonte NetFlow" +#~ msgid "RSVP" +#~ msgstr "Reserva" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Agregação de portas NetFlow ProtoPort" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Agregação do NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow versão 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow versão 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow versão 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow versão 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d minutos" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minuto" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Dias" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Incluir se:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Parâmetros de relatório" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Nota:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Porto(s) de destino" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(por exemplo, -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Restrições do filtro de fluxo" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Selecionar Um" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Inteiramente em período de tempo especificado" +#~ msgid "Src Prefix" +#~ msgstr "Prefixo Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Hora de início no período de tempo especificado" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Hora de fim no intervalo de tempo especificado" +#~ msgid "Src Port" +#~ msgstr "Porta Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Qualquer parte em um período de tempo especificado" +#~ msgid "End Date" +#~ msgstr "Data Final" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Completo (Catalisador)" +#~ msgid "Filter Type" +#~ msgstr "Nome do filtro" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Agregação de prefixos" +#~ msgid "View" +#~ msgstr "Ver" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Agregação do prefixo de destino" +#~ msgid "Defaults" +#~ msgstr "Padrões" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Agregação do prefixo de origem" +#~ msgid "Save As" +#~ msgstr "Salvar como" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Agregação de Portas de Protocolo" +#~ msgid "Filter Data" +#~ msgstr "Nome do filtro" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "Agregação AS" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " São permitidas múltiplas entradas de campo, separadas por vírgulas, nos campos acima. Um sinal de menos (-) irá negar uma entrada (por exemplo, -80 para Porto, significaria qualquer Porto menos 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 Linha com Tags" +#~ msgid "New Query" +#~ msgstr "Nova Consulta" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Prefixo" +#~ msgid "Update" +#~ msgstr "Atualizar" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "Filtro Salvo" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Interface" +#~ msgid "Filter Settings Saved" +#~ msgstr "Definições de Filtro Guardadas" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filtro Atualizado" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filtro Atualizado" +#~ msgid "Interface" +#~ msgstr "Interface" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Definições de Filtro Guardadas" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtro Salvo" +#~ msgid "Prefix" +#~ msgstr "Prefixo" #, fuzzy -#~ msgid "Update" -#~ msgstr "Atualizar" +#~ msgid "1 Line with Tags" +#~ msgstr "1 Linha com Tags" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nova Consulta" +#~ msgid "AS Aggregation" +#~ msgstr "Agregação AS" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " São permitidas múltiplas entradas de campo, separadas por vírgulas, nos campos acima. Um sinal de menos (-) irá negar uma entrada (por exemplo, -80 para Porto, significaria qualquer Porto menos 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Agregação de Portas de Protocolo" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Nome do filtro" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Agregação do prefixo de origem" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Salvar como" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Agregação do prefixo de destino" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Padrões" +#~ msgid "Prefix Aggregation" +#~ msgstr "Agregação de prefixos" #, fuzzy -#~ msgid "View" -#~ msgstr "Ver" +#~ msgid "Full (Catalyst)" +#~ msgstr "Completo (Catalisador)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Nome do filtro" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Qualquer parte em um período de tempo especificado" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Data Final" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Hora de fim no intervalo de tempo especificado" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Porta Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Hora de início no período de tempo especificado" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Inteiramente em período de tempo especificado" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Prefixo Src" +#~ msgid "Select One" +#~ msgstr "Selecionar Um" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Restrições do filtro de fluxo" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(por exemplo, -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Porto(s) de destino" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Nota:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Parâmetros de relatório" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Incluir se:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Dias" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Minuto" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d minutos" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow versão 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow versão 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow versão 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow versão 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Agregação do NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Agregação de portas NetFlow ProtoPort" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Agregação de Prefixos de Fonte NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Agregação do Prefixo de Destino do NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Reserva" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Agregação de prefixos NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Destino NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Destino da Fonte de Fluxo Líquido" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "Rota IPv6" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Fluxo total" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS como agregação" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "Agregação de Porto de Proto do NetFlow ToS Proto" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Agregação do Prefixo do NetFlow ToS Source" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "Agregação do Prefixo de Destino do NetFlow ToS" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Agregação de prefixos do NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Agregação de portas do prefixo NetFlow ToS" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools versão etiquetada 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Desativado)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Mais alto)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "PCDC" +#~ msgid "Directory" +#~ msgstr "Diretório" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Diretório em que estes dispositivos fluem. Esse diretório deve estar no caminho do diretório de fluxo. Não ponha o caminho completo aqui. Também, não que se você alterar o caminho, toda a configuração predefinida do filer para usá-lo terá que ser salva novamente." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nidificação" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Estrutura de Diretório que será usada para os fluxos deste dispositivo." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Versão NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Versão do Protocolo NetFlow utilizada pelo dispositivo." #, fuzzy -#~ msgid "RDP" -#~ msgstr "PDR" +#~ msgid "Compression Level" +#~ msgstr "Nível de compressão" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Nível de compressão dos arquivos de fluxo. Maior compactação economiza espaço, mas usa mais CPU para armazenar e recuperar resultados." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Rotação" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Com que frequência criar um novo ficheiro de fluxo." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Expiração" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Quanto tempo para manter seus arquivos de fluxo." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Versão" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Compressão" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Expirar" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Dispositivos" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Gerenciar ouvintes" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Ferramentas de Fluxo Caminho Binário" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "O caminho para o seu gato de fluxo, filtro de fluxo e binário de fluxo." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Diretório de Trabalho de Ferramentas de Fluxo" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Este é o caminho para um diretório temporário para fazer o trabalho." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Diretório de Fluxos" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Este é o caminho para basear o caminho da estrutura da pasta de fluxo." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "O método pelo qual você deseja resolver nomes de host." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Usar Servidor Local" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Use o servidor DNS abaixo" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Não Resolver DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Servidor DNS alternativo" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Este é o servidor DNS usado para resolver nomes." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Nomes de Domínio Strip" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Uma lista delimitada por vírgulas de nomes de domínios a serem removidos do domínio." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Novo Fluxo" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Imprimir relatórios" diff --git a/locales/po/pt-PT.po b/locales/po/pt-PT.po index 1f2ca94..d00e5c8 100644 --- a/locales/po/pt-PT.po +++ b/locales/po/pt-PT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:35-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "Porta de origem UDP/TCP" msgid "UDP/TCP Port" msgstr "Porto UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP de origem" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "IP de Destino" @@ -98,13 +98,13 @@ msgstr "Interface de saída" msgid "Input/Output Interface" msgstr "Interface de entrada/saída" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Nome da fonte" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Destino AS" @@ -119,7 +119,7 @@ msgstr "Fonte/Destino AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Prefixo da fonte" @@ -193,7 +193,7 @@ msgstr "Sem limite" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Todos" @@ -207,7 +207,7 @@ msgstr "Porta(s) de origem" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Fluxos" @@ -216,8 +216,8 @@ msgstr "Fluxos" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Pacotes" @@ -243,18 +243,18 @@ msgstr "IP de Destino" msgid "Port" msgstr "Porta" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Destino IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Apenas endereços de e-mail" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Protocolo" @@ -279,290 +279,295 @@ msgstr "TDS" msgid "Destingation Prefix" msgstr "Prefixo de Destino" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP de origem" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "IP de Destino" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Porta(s) de origem" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "IP de Destino" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Hora de início" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Hora do Fim" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Activo" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Bandeiras" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP de origem" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "IP de Destino" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Limpar Filtros" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtrar" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtrar" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Ouvinte" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Presets" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Relatório: [novo]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Impresso:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Estatísticas" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Relatórios Estatísticos" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Imprimir relatórios" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Administrar programações" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Resolver Endereços:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Resolver Endereços:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Sim" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Não" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Sort Field:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Bytes mínimos:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protocolos" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protocolos" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "Marcadores TCP" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Campos TOS" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Porta(s) de origem" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Interface de fonte" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Porto de destino" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Interface Destino" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Destino AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Dispositivo [novo]" msgid "FlowView Listeners" msgstr "Escutadores FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Pesquisar" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Ir" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Filtros Set/Refresh" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Limpar" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Limpar Filtros" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Ouvintes" @@ -750,34 +755,38 @@ msgstr "Clique em 'Continuar' para ativar o(s) seguinte(s) horário(s)." msgid "You must select at least one Filter." msgstr "Você deve selecionar pelo menos um dispositivo." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Filtros de fluxo" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filtros" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Padrão" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Nome do Filtro" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Resolução de Hostname" @@ -828,7 +837,7 @@ msgstr "Novo Agendamento" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Introduza um título de relatório para o programa FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Activado" @@ -903,18 +912,22 @@ msgstr "Relatório: [editar: %s]" msgid "Report: [new]" msgstr "Relatório: [novo]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Seletor de data de início" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Horários FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Informações" @@ -924,22 +937,22 @@ msgstr "Informações" msgid "Schedule Title" msgstr "Título da agenda" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Por favor, selecione um intervalo de subscrição" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Data de início" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Próximo Enviar" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Email" @@ -959,25 +972,20 @@ msgstr "Relatório: [editar: %s]" msgid "Filter: [new]" msgstr "Relatório: [novo]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Imprimir relatórios" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Imprimir relatórios" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Personalizado" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Seletor de data final" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "mostrar/ocultar" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tabela" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bar Bytes" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Barra de Pacotes" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Barra de Fluxos" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Desconhecido" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Fluxo líquido - % (%)" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Novo Fluxo" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Nome da fonte" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Nome da fonte" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Destino AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Porto de destino" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Porto de destino" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Destino IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Prefixo de Destino" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Pacotes" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Estatísticas Sumárias" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Distribuição do tamanho do pacote IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Pacotes por Distribuição de Fluxo (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Octetos por Distribuição de Fluxo (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Distribuição do tempo de fluxo (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Você deve selecionar um Relatório de estatísticas ou Relatório impresso!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Você deve selecionar apenas um Relatório de estatísticas ou um Relatório impresso (não ambos)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Datas inválidas, Data/Hora de fim é anterior à Data/Hora de início!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "IP inválido para o endereço de origem!
(Deve ser na forma de '192.168.0.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sub-rede inválida para o endereço de origem!
(Deve ser na forma de '192.168.0.1/255.255.255.255.0' ou '192.168.0.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "IP inválido para o endereço de destino!
(Deve ser na forma de '192.168.0.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Sub-rede inválida para o endereço de destino!
(Deve ser na forma de '192.168.0.1/255.255.255.255.0' ou '192.168.0.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Valor inválido para Interface de Fonte!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Valor inválido para a porta de origem! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Valor inválido para Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Valor inválido para a interface de destino!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Valor inválido para o Porto de Destino! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Valor inválido para Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Valor inválido para o Protocolo! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Valor inválido para o TCP Flag! (ex: 0x1b ou 0x1b/SA ou SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Valor inválido para octetos de corte!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Valor inválido para linhas de corte!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Valor inválido para Sort Field!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Gráfico FlowView para %s Tipo é %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Max Flows:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Barra de Pacotes" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Visualizador de Fluxo" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Fluxo Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "O filtro foi eliminado" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "O filtro foi atualizado" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Visor de fluxo" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Ver" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Guardar" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Editar)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Acções" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d Semana" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d Semanas" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Mês" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "Meses" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d Ano" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Diversos" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Uma lista delimitada por vírgulas de nomes de domínios a serem removidos do domínio." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Nomes de Domínio Strip" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Este é o servidor DNS usado para resolver nomes." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Servidor DNS alternativo" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Não Resolver DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Use o servidor DNS abaixo" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Usar Servidor Local" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "O método pelo qual você deseja resolver nomes de host." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Este é o caminho para basear o caminho da estrutura da pasta de fluxo." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Diretório de Fluxos" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Este é o caminho para um diretório temporário para fazer o trabalho." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Diretório de Trabalho de Ferramentas de Fluxo" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "O caminho para o seu gato de fluxo, filtro de fluxo e binário de fluxo." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Ferramentas de Fluxo Caminho Binário" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Gerenciar ouvintes" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Dispositivos" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Expirar" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Compressão" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Versão" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Quanto tempo para manter seus arquivos de fluxo." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Data de Validade" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Com que frequência criar um novo ficheiro de fluxo." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotação" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Nível de compressão dos arquivos de fluxo. Maior compactação economiza espaço, mas usa mais CPU para armazenar e recuperar resultados." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Nível de compressão" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Versão do Protocolo NetFlow utilizada pelo dispositivo." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Versão NetFlow" +#~ msgid "RDP" +#~ msgstr "PDR" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Estrutura de Diretório que será usada para os fluxos deste dispositivo." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nidificação" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Diretório em que estes dispositivos fluem. Esse diretório deve estar no caminho do diretório de fluxo. Não ponha o caminho completo aqui. Também, não que se você alterar o caminho, toda a configuração predefinida do filer para usá-lo terá que ser salva novamente." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Diretório" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Mais alto)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Desativado)" +#~ msgid "DCCP" +#~ msgstr "PCDC" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools versão etiquetada 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Agregação de portas do prefixo NetFlow ToS" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Agregação de prefixos do NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "Agregação do Prefixo de Destino do NetFlow ToS" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Agregação do Prefixo do NetFlow ToS Source" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "Agregação de Porto de Proto do NetFlow ToS Proto" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS como agregação" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Fluxo total" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Destino da Fonte de Fluxo Líquido" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Destino NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "Rota IPv6" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Agregação de prefixos NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Agregação do Prefixo de Destino do NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Agregação de Prefixos de Fonte NetFlow" +#~ msgid "RSVP" +#~ msgstr "Inscrição" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Agregação de portas NetFlow ProtoPort" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Agregação do NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow versão 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow versão 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow versão 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow versão 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "A cada %d minutos" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Minuto" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Dias" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Incluir se:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Parâmetros de relatório" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Nota:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Porto(s) de destino" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(por exemplo, -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Restrições do filtro de fluxo" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Selecione um" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Inteiramente em período de tempo especificado" +#~ msgid "Src Prefix" +#~ msgstr "Prefixo Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Hora de início no período de tempo especificado" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Hora de fim no intervalo de tempo especificado" +#~ msgid "Src Port" +#~ msgstr "Porta Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Qualquer parte em um período de tempo especificado" +#~ msgid "End Date" +#~ msgstr "Data de Fim" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Completo (Catalisador)" +#~ msgid "Filter Type" +#~ msgstr "Nome do Filtro" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Agregação de prefixos" +#~ msgid "View" +#~ msgstr "Ver" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Agregação do prefixo de destino" +#~ msgid "Defaults" +#~ msgstr "Padrão" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Agregação do prefixo de origem" +#~ msgid "Save As" +#~ msgstr "Salvar como" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Agregação de Portas de Protocolo" +#~ msgid "Filter Data" +#~ msgstr "Nome do Filtro" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "Agregação AS" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " São permitidas múltiplas entradas de campo, separadas por vírgulas, nos campos acima. Um sinal de menos (-) irá negar uma entrada (por exemplo, -80 para Porto, significaria qualquer Porto menos 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 Linha com Tags" +#~ msgid "New Query" +#~ msgstr "Nova Consulta" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Prefixo" +#~ msgid "Update" +#~ msgstr "Atualizar" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "Filtro Salvo" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Interface" +#~ msgid "Filter Settings Saved" +#~ msgstr "Definições de Filtro Guardadas" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filtro Atualizado" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filtro Atualizado" +#~ msgid "Interface" +#~ msgstr "Interface" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Definições de Filtro Guardadas" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtro Salvo" +#~ msgid "Prefix" +#~ msgstr "Prefixo" #, fuzzy -#~ msgid "Update" -#~ msgstr "Atualizar" +#~ msgid "1 Line with Tags" +#~ msgstr "1 Linha com Tags" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Nova Consulta" +#~ msgid "AS Aggregation" +#~ msgstr "Agregação AS" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " São permitidas múltiplas entradas de campo, separadas por vírgulas, nos campos acima. Um sinal de menos (-) irá negar uma entrada (por exemplo, -80 para Porto, significaria qualquer Porto menos 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Agregação de Portas de Protocolo" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Nome do Filtro" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Agregação do prefixo de origem" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Salvar como" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Agregação do prefixo de destino" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Padrão" +#~ msgid "Prefix Aggregation" +#~ msgstr "Agregação de prefixos" #, fuzzy -#~ msgid "View" -#~ msgstr "Ver" +#~ msgid "Full (Catalyst)" +#~ msgstr "Completo (Catalisador)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Nome do Filtro" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Qualquer parte em um período de tempo especificado" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Data de Fim" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Hora de fim no intervalo de tempo especificado" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Porta Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Hora de início no período de tempo especificado" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Inteiramente em período de tempo especificado" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Prefixo Src" +#~ msgid "Select One" +#~ msgstr "Selecione um" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Restrições do filtro de fluxo" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(por exemplo, -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Porto(s) de destino" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Nota:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Parâmetros de relatório" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Incluir se:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Dias" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Minuto" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "A cada %d minutos" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow versão 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow versão 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow versão 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow versão 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Agregação do NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Agregação de portas NetFlow ProtoPort" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Agregação de Prefixos de Fonte NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Agregação do Prefixo de Destino do NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Inscrição" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Agregação de prefixos NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Destino NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Destino da Fonte de Fluxo Líquido" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "Rota IPv6" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Fluxo total" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS como agregação" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "Agregação de Porto de Proto do NetFlow ToS Proto" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Agregação do Prefixo do NetFlow ToS Source" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "Agregação do Prefixo de Destino do NetFlow ToS" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Agregação de prefixos do NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Agregação de portas do prefixo NetFlow ToS" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools versão etiquetada 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Desativado)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Mais alto)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "PCDC" +#~ msgid "Directory" +#~ msgstr "Diretório" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Diretório em que estes dispositivos fluem. Esse diretório deve estar no caminho do diretório de fluxo. Não ponha o caminho completo aqui. Também, não que se você alterar o caminho, toda a configuração predefinida do filer para usá-lo terá que ser salva novamente." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nidificação" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Estrutura de Diretório que será usada para os fluxos deste dispositivo." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Versão NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Versão do Protocolo NetFlow utilizada pelo dispositivo." #, fuzzy -#~ msgid "RDP" -#~ msgstr "PDR" +#~ msgid "Compression Level" +#~ msgstr "Nível de compressão" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Nível de compressão dos arquivos de fluxo. Maior compactação economiza espaço, mas usa mais CPU para armazenar e recuperar resultados." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Rotação" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Com que frequência criar um novo ficheiro de fluxo." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Data de Validade" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Quanto tempo para manter seus arquivos de fluxo." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Versão" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Compressão" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Expirar" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Dispositivos" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Gerenciar ouvintes" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Ferramentas de Fluxo Caminho Binário" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "O caminho para o seu gato de fluxo, filtro de fluxo e binário de fluxo." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Diretório de Trabalho de Ferramentas de Fluxo" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Este é o caminho para um diretório temporário para fazer o trabalho." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Diretório de Fluxos" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Este é o caminho para basear o caminho da estrutura da pasta de fluxo." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "O método pelo qual você deseja resolver nomes de host." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Usar Servidor Local" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Use o servidor DNS abaixo" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Não Resolver DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Servidor DNS alternativo" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Este é o servidor DNS usado para resolver nomes." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Nomes de Domínio Strip" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Uma lista delimitada por vírgulas de nomes de domínios a serem removidos do domínio." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Novo Fluxo" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Imprimir relatórios" diff --git a/locales/po/ru-RU.po b/locales/po/ru-RU.po index f65812f..8426317 100644 --- a/locales/po/ru-RU.po +++ b/locales/po/ru-RU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:37-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "Порт источника UDP/TCP" msgid "UDP/TCP Port" msgstr "Порт UDP/TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP адрес" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "IP адрес назначения" @@ -98,13 +98,13 @@ msgstr "Выходной интерфейс" msgid "Input/Output Interface" msgstr "Входной/выходной интерфейс" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Источник Данных" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Ветка назначения" @@ -119,7 +119,7 @@ msgstr "Источник/назначение AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Исходный префикс" @@ -193,7 +193,7 @@ msgstr "Без ограничений" msgid "%s Bytes" msgstr "%s Байты" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Все" @@ -207,7 +207,7 @@ msgstr "Порт(ы) источника (портов)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Потоки" @@ -216,8 +216,8 @@ msgstr "Потоки" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Байт" @@ -226,8 +226,8 @@ msgstr "Байт" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Пакеты" @@ -243,18 +243,18 @@ msgstr "IP адрес назначения" msgid "Port" msgstr "Порт" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Неверный IP-адрес" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Адрес электронной почты" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Протокол" @@ -279,290 +279,295 @@ msgstr "TOS" msgid "Destingation Prefix" msgstr "Префикс пункта назначения" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "БНА" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP адрес" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "IP адрес назначения" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Порт(ы) источника (портов)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "IP адрес назначения" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Время начала" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Время окончания" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Активный" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ц" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Флэм" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Флаги" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP адрес" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "IP адрес назначения" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Очистить фильтры" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Фильтр" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Фильтр" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Слушатель" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Предустановки" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Докладывайте: [новый]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Отпечатано:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Статистика" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Статистические отчеты" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Печать отчетов" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Управление расписаниями" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Урегулировать адреса:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Урегулировать адреса:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Да" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Нет" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Сортировать поле:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Минимальные байты:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Протоколы" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Протоколы" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP флаги" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOS-поля" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Порт(ы) источника (портов)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Интерфейс источника" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Лучший порт" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Dest Interface" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Устройство [новое]" msgid "FlowView Listeners" msgstr "FlowView Слушатели" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Найти" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Выполнить" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Установить/Обновить фильтры" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Очистить" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Очистить фильтры" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Слушатели" @@ -750,34 +755,38 @@ msgstr "Нажмите кнопку \"Продолжить\", чтобы вкл msgid "You must select at least one Filter." msgstr "Вы должны выбрать хотя бы одно устройство." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Поточные фильтры" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Установить/Обновить фильтры" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Стандартно" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Имя Фильтра" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Разрешение имени хоста" @@ -828,7 +837,7 @@ msgstr "Новый график" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Введите название отчета для расписания FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Включено" @@ -903,18 +912,22 @@ msgstr "Докладывайте: [редактирование: %s]" msgid "Report: [new]" msgstr "Докладывайте: [новый]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Выбор даты запуска" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Расписания FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Расписание" @@ -924,22 +937,22 @@ msgstr "Расписание" msgid "Schedule Title" msgstr "Название расписания" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Интервал" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Дата начала" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Следующая отправка" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Email" @@ -959,25 +972,20 @@ msgstr "Докладывайте: [редактирование: %s]" msgid "Filter: [new]" msgstr "Докладывайте: [новый]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Печать отчетов" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Печать отчетов" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Пользовательский" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Выбор даты окончания срока действия" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Показать/Скрыть" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Таблица" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Байт-бар" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Пакетная панель" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Поток Бар" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Неизвестно" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Чистый расход - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Новый поток" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Байты" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Байты" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Источник Данных" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Источник Данных" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Лучший порт" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "ЦСР" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Лучший порт" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Префикс Дест Префикс" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Пакеты" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Краткая статистика" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Распределение IP-пакетов по размеру (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Пакеты на каждый поток Распределение (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Октеты на распределение потока (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Распределение времени потока (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Вы должны выбрать статистический отчет или печатный отчет!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Вы должны выбрать только статистический отчет или печатный отчет (не оба)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Недействительные даты, Дата/Время окончания раньше, чем Дата/Время начала!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Недействительный IP-адрес для исходного адреса!
(Должно быть в виде '192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Недействительная подсеть для исходного адреса!
(Должно быть в виде '192.168.0.1/255.255.255.255.0' или '192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Недействительный IP-адрес для адреса назначения!
(Должно быть в виде '192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Недействительная подсеть для адреса назначения!
(должна быть в виде '192.168.0.1/255.255.255.255.0' или '192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Неверное значение для интерфейса источника!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Недействительное значение для порта источника! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Недействительное значение для Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Недействительное значение для интерфейса назначения!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Недействительное значение для порта назначения! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Недействительное значение для пункта назначения AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Недействительное значение для протокола! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Недействительное значение для TCP флага! (например: 0x1b или 0x1b/SA или SA/SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Недействительное значение для параметра Cutoff Octets!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Недействительное значение для Cutoff Lines!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Недействительное значение для сортировки поля!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Диаграмма FlowView Chart for %s Тип %s %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Макс Флоус:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Пакетная панель" @@ -1423,721 +1447,733 @@ msgstr "Плагин -> Средство просмотра потоков" msgid "Plugin -> Flow Admin" msgstr "Плагин -> Администратор потока" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Фильтр был удален." -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Фильтр был обновлен." -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Просмотрщик потоков" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Вид" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr " Сохранить " -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Редактировать)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Действия" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "Неделя" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d Недели" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d Месяц" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d Месяца" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "Год" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Разное" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Список доменных имен, разделенный запятыми, для удаления из домена." +#~ msgid "TCP" +#~ msgstr "ПТС" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Раздельные доменные имена" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Это DNS-сервер, используемый для разрешения имен." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Альтернативный DNS-сервер" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Не разрешать DNS" +#~ msgid "GGP" +#~ msgstr "ГИГАНТСКАЯ ПРИРОДНАЯ ГАММА" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Использовать DNS-сервер Ниже" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Использовать локальный сервер" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Метод, с помощью которого вы хотите разрешить имена хостов." +#~ msgid "CBT" +#~ msgstr "ЦЕНТРАЛЬНЫЙ БАНК" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Это путь к основанию пути структуры папок потока." +#~ msgid "EGP" +#~ msgstr "ЭЛЕКТРОКАРДИОГРАММА" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Каталог потоков" +#~ msgid "IGP" +#~ msgstr "МПГ" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Это путь к временной директории для выполнения работы." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Рабочий каталог инструментов управления потоками" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Путь к вашей кошке, фильтру и бинарному фильтру потока." +#~ msgid "PUP" +#~ msgstr "ПНП" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Инструменты управления потоком Двоичный контур" +#~ msgid "ARGUS" +#~ msgstr "АРГУС" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Управление слушателями" +#~ msgid "EMCON" +#~ msgstr "ЭМКОН" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Устройства" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Истекает" +#~ msgid "CHAOS" +#~ msgstr "ХАОС" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Сжатие" +#~ msgid "MUX" +#~ msgstr "МУКС" #, fuzzy -#~ msgid "Version" -#~ msgstr "Версия" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Как долго хранить ваши файлы потока." +#~ msgid "HMP" +#~ msgstr "ПЗМ" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Срок действия" +#~ msgid "PRM" +#~ msgstr "МЧР" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Как часто нужно создавать новый файл потока." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Вращение" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Уровень сжатия файлов потока. Более высокое сжатие экономит место, но требует больше CPU для хранения и извлечения результатов." +#~ msgid "TRUNK-2" +#~ msgstr "ТРУНК-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Уровень сжатия" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Версия протокола NetFlow, используемая устройством." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Версия NetFlow" +#~ msgid "RDP" +#~ msgstr "ПРС" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Структура каталога, который будет использоваться для потоков для данного устройства." +#~ msgid "IRTP" +#~ msgstr "ИРТП" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Раскладка" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Каталог, в котором находятся эти устройства. Этот каталог должен находиться в пути к каталогу Flow Directory. Не ставьте полный путь сюда. Кроме того, если вы измените путь, то все предустановленные настройки фильтра для его использования нужно будет сохранить заново." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Каталог" +#~ msgid "MFE-NSP" +#~ msgstr "МФЭ-НСП" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Самое высокое)" +#~ msgid "MERIT-INP" +#~ msgstr "МЕРИТ-ИНП" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Выключен)" +#~ msgid "DCCP" +#~ msgstr "ДККП" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Потоковые инструменты с тегами версии 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Агрегирование портов NetFlow ToS Префикс Агрегирование портов" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Агрегирование префиксов NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Префикс Агрегирование префиксов пунктов назначения NetFlow ToS" +#~ msgid "DDP" +#~ msgstr "ПДП" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Агрегирование префикса источника NetFlow ToS Агрегирование префиксов NetFlow ToS" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "Совокупность портов NetFlow ToS Прототипа Агрегация портов" +#~ msgid "TP++" +#~ msgstr "TP+++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Агрегирование потоков AS Агрегирование" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Место назначения источника потока NetFlow" +#~ msgid "SDRP" +#~ msgstr "ПУРБ" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Пункт назначения NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-маршрут" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Агрегирование префиксов потока NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Агрегирование префиксов конечного пункта NetFlow" +#~ msgid "IDRP" +#~ msgstr "УПРК" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Агрегирование префикса источника NetFlow Агрегирование префикса потока" +#~ msgid "RSVP" +#~ msgstr "Приглашение" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Агрегация портов NetFlow Прототипа Агрегация портов NetFlow" +#~ msgid "GRE" +#~ msgstr "ГРЕ" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Агрегирование NetFlow AS Агрегирование NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "МПСЕК-ЕСП" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow версии 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow версии 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow версии 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow версии 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-опции" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d Минут" +#~ msgid "RSPF" +#~ msgstr "РФПФ" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d Минута" +#~ msgid "VMTP" +#~ msgstr "ВПИМ" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Дня(ей)" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Включая if:" +#~ msgid "OSPF" +#~ msgstr "ОНПФ" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Параметры отчета" +#~ msgid "MTP" +#~ msgstr "СРЕДНЕСРОЧНЫЙ ПЛАН" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Заметка:" +#~ msgid "IPIP" +#~ msgstr "ИПИП" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Порт(ы) назначения" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(например, -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Ограничения фильтра потока воздуха" +#~ msgid "Src/Dest IP" +#~ msgstr "Src/Dest IP-адрес" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Выберите" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Полностью в указанный промежуток времени" +#~ msgid "Src Prefix" +#~ msgstr "Префикс Срка" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Время начала в указанном промежутке времени" +#~ msgid "Src IF" +#~ msgstr "СРС ЕСЛИ" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Время окончания в указанном промежутке времени" +#~ msgid "Src Port" +#~ msgstr "Порт Срк" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Любая часть в указанном промежутке времени" +#~ msgid "End Date" +#~ msgstr "Дата окончания" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Полный (Катализатор)" +#~ msgid "Filter Type" +#~ msgstr "Имя Фильтра" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Агрегирование префиксов" +#~ msgid "View" +#~ msgstr "Вид" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Агрегирование префиксов пунктов назначения Агрегация префиксов пунктов назначения" +#~ msgid "Defaults" +#~ msgstr "По умолчанию" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Агрегирование префиксов источников Агрегирование префиксов" +#~ msgid "Save As" +#~ msgstr "Сохранить как" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Агрегирование портов протокола" +#~ msgid "Filter Data" +#~ msgstr "Имя Фильтра" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS Агрегирование" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr " В полях выше разрешено вводить несколько полей, разделенных запятыми. Знак минус (-) будет отрицать запись (например, -80 для порта, будет означать любой порт, кроме 80)." #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 строка с метками" +#~ msgid "New Query" +#~ msgstr "Новый запрос" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Префикс" +#~ msgid "Update" +#~ msgstr "Обновить" #, fuzzy -#~ msgid "AS" -#~ msgstr "АС" +#~ msgid "Filter Saved" +#~ msgstr "Сохраненный фильтр" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Интерфейс" +#~ msgid "Filter Settings Saved" +#~ msgstr "Настройки фильтра Сохранены" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Обновленный фильтр" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Обновленный фильтр" +#~ msgid "Interface" +#~ msgstr "Интерфейс" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Настройки фильтра Сохранены" +#~ msgid "AS" +#~ msgstr "АС" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Сохраненный фильтр" +#~ msgid "Prefix" +#~ msgstr "Префикс" #, fuzzy -#~ msgid "Update" -#~ msgstr "Обновить" +#~ msgid "1 Line with Tags" +#~ msgstr "1 строка с метками" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Новый запрос" +#~ msgid "AS Aggregation" +#~ msgstr "AS Агрегирование" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr " В полях выше разрешено вводить несколько полей, разделенных запятыми. Знак минус (-) будет отрицать запись (например, -80 для порта, будет означать любой порт, кроме 80)." +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Агрегирование портов протокола" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Имя Фильтра" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Агрегирование префиксов источников Агрегирование префиксов" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Сохранить как" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Агрегирование префиксов пунктов назначения Агрегация префиксов пунктов назначения" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "По умолчанию" +#~ msgid "Prefix Aggregation" +#~ msgstr "Агрегирование префиксов" #, fuzzy -#~ msgid "View" -#~ msgstr "Вид" +#~ msgid "Full (Catalyst)" +#~ msgstr "Полный (Катализатор)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Имя Фильтра" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Любая часть в указанном промежутке времени" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Дата окончания" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Время окончания в указанном промежутке времени" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Порт Срк" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Время начала в указанном промежутке времени" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "СРС ЕСЛИ" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Полностью в указанный промежуток времени" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Префикс Срка" +#~ msgid "Select One" +#~ msgstr "Выберите" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Ограничения фильтра потока воздуха" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src/Dest IP-адрес" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(например, -0x0b/0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Порт(ы) назначения" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Заметка:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "ИПИП" +#~ msgid "Report Parameters" +#~ msgstr "Параметры отчета" #, fuzzy -#~ msgid "MTP" -#~ msgstr "СРЕДНЕСРОЧНЫЙ ПЛАН" +#~ msgid "Include if:" +#~ msgstr "Включая if:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "ОНПФ" +#~ msgid "%d Days" +#~ msgstr "%d Дня(ей)" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d Минута" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "ВПИМ" +#~ msgid "%d Minutes" +#~ msgstr "%d Минут" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "РФПФ" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow версии 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-опции" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow версии 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow версии 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow версии 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Агрегирование NetFlow AS Агрегирование NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "МПСЕК-ЕСП" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Агрегация портов NetFlow Прототипа Агрегация портов NetFlow" #, fuzzy -#~ msgid "BNA" -#~ msgstr "БНА" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Агрегирование префикса источника NetFlow Агрегирование префикса потока" #, fuzzy -#~ msgid "GRE" -#~ msgstr "ГРЕ" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Агрегирование префиксов конечного пункта NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "Приглашение" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Агрегирование префиксов потока NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "УПРК" +#~ msgid "NetFlow Destination" +#~ msgstr "Пункт назначения NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Место назначения источника потока NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-маршрут" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "ПУРБ" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Агрегирование потоков AS Агрегирование" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "Совокупность портов NetFlow ToS Прототипа Агрегация портов" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Агрегирование префикса источника NetFlow ToS Агрегирование префиксов NetFlow ToS" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP+++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Префикс Агрегирование префиксов пунктов назначения NetFlow ToS" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Агрегирование префиксов NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "ПДП" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Агрегирование портов NetFlow ToS Префикс Агрегирование портов" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Потоковые инструменты с тегами версии 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Выключен)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Самое высокое)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "ДККП" +#~ msgid "Directory" +#~ msgstr "Каталог" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "МЕРИТ-ИНП" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Каталог, в котором находятся эти устройства. Этот каталог должен находиться в пути к каталогу Flow Directory. Не ставьте полный путь сюда. Кроме того, если вы измените путь, то все предустановленные настройки фильтра для его использования нужно будет сохранить заново." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "МФЭ-НСП" +#~ msgid "Nesting" +#~ msgstr "Раскладка" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Структура каталога, который будет использоваться для потоков для данного устройства." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Версия NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "ИРТП" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Версия протокола NetFlow, используемая устройством." #, fuzzy -#~ msgid "RDP" -#~ msgstr "ПРС" +#~ msgid "Compression Level" +#~ msgstr "Уровень сжатия" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Уровень сжатия файлов потока. Более высокое сжатие экономит место, но требует больше CPU для хранения и извлечения результатов." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "Вращение" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "ТРУНК-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Как часто нужно создавать новый файл потока." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Срок действия" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Как долго хранить ваши файлы потока." #, fuzzy -#~ msgid "PRM" -#~ msgstr "МЧР" +#~ msgid "Version" +#~ msgstr "Версия" #, fuzzy -#~ msgid "HMP" -#~ msgstr "ПЗМ" +#~ msgid "Compression" +#~ msgstr "Сжатие" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Истекает" #, fuzzy -#~ msgid "MUX" -#~ msgstr "МУКС" +#~ msgid "No Devices" +#~ msgstr "Устройства" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "ХАОС" +#~ msgid "Manage Listeners" +#~ msgstr "Управление слушателями" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Инструменты управления потоком Двоичный контур" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "ЭМКОН" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Путь к вашей кошке, фильтру и бинарному фильтру потока." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "АРГУС" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Рабочий каталог инструментов управления потоками" #, fuzzy -#~ msgid "PUP" -#~ msgstr "ПНП" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Это путь к временной директории для выполнения работы." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Каталог потоков" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Это путь к основанию пути структуры папок потока." #, fuzzy -#~ msgid "IGP" -#~ msgstr "МПГ" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Метод, с помощью которого вы хотите разрешить имена хостов." #, fuzzy -#~ msgid "EGP" -#~ msgstr "ЭЛЕКТРОКАРДИОГРАММА" +#~ msgid "Use Local Server" +#~ msgstr "Использовать локальный сервер" #, fuzzy -#~ msgid "CBT" -#~ msgstr "ЦЕНТРАЛЬНЫЙ БАНК" +#~ msgid "Use DNS Server Below" +#~ msgstr "Использовать DNS-сервер Ниже" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Не разрешать DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Альтернативный DNS-сервер" #, fuzzy -#~ msgid "GGP" -#~ msgstr "ГИГАНТСКАЯ ПРИРОДНАЯ ГАММА" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Это DNS-сервер, используемый для разрешения имен." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Раздельные доменные имена" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Список доменных имен, разделенный запятыми, для удаления из домена." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Новый поток" #, fuzzy -#~ msgid "TCP" -#~ msgstr "ПТС" +#~ msgid "Select a Filter to display data" +#~ msgstr "Печать отчетов" diff --git a/locales/po/sv-SE.po b/locales/po/sv-SE.po index 7fd27c7..397ec9a 100644 --- a/locales/po/sv-SE.po +++ b/locales/po/sv-SE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:41-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP Source Port" msgid "UDP/TCP Port" msgstr "UDP / TCP-port" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Källa IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Destination IP" @@ -98,13 +98,13 @@ msgstr "Utgång Gränssnitt" msgid "Input/Output Interface" msgstr "Ingång / utgång Gränssnitt" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Datakälla" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Destination AS" @@ -119,7 +119,7 @@ msgstr "Källa / Destination AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Källprefix" @@ -193,7 +193,7 @@ msgstr "No Limit" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Alla" @@ -207,7 +207,7 @@ msgstr "Källport (er)" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "flöden" @@ -216,8 +216,8 @@ msgstr "flöden" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Byte" @@ -226,8 +226,8 @@ msgstr "Byte" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "paket" @@ -243,18 +243,18 @@ msgstr "Destination IP" msgid "Port" msgstr "Port" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Dest IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "E-postadresser" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Protokoll" @@ -279,290 +279,295 @@ msgstr "Villkor" msgid "Destingation Prefix" msgstr "Destination Prefix" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Källa IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Destination IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Källport (er)" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Destination IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Starttid" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Sluttid" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Aktiv" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / Pk" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Flaggor" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Källa IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Destination IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Rensa filter" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtrera" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtrera" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Lyssnare" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Förval" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Rapportera: [ny]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Tryckt:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Statistik" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Statistikrapporter" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Skriv ut rapporter" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Hantera scheman" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Lösa adresser:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Lösa adresser:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Ja" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Nej" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Sorteringsfält:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Minsta byte:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protokoll" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protokoll" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP-flaggor" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOS-fält" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Källport (er)" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Källans gränssnitt" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Dest Port" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Dest-gränssnittet" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Enhet [ny]" msgid "FlowView Listeners" msgstr "FlowView-lyssnare" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Sök" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Utför" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Ange / Uppdatera filter" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Rensa" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Rensa filter" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "lyssnare" @@ -750,34 +755,38 @@ msgstr "Klicka på \"Fortsätt\" för att Aktivera följande schema (er)." msgid "You must select at least one Filter." msgstr "Du måste välja minst en enhet." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Flödesfilter" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Filter" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Standard" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Filternamn" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Värdnamn Upplösning" @@ -828,7 +837,7 @@ msgstr "Nytt schema" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Ange en rapporttitel för FlowView-schemat." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Aktiverad" @@ -903,18 +912,22 @@ msgstr "Rapportera: [redigera: %s]" msgid "Report: [new]" msgstr "Rapportera: [ny]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Startdatumsväljare" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView Scheman" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "scheman" @@ -924,22 +937,22 @@ msgstr "scheman" msgid "Schedule Title" msgstr "Rubrik för schema" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Intervall" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Startdatum" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Nästa Skicka" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "E-post" @@ -959,25 +972,20 @@ msgstr "Rapportera: [redigera: %s]" msgid "Filter: [new]" msgstr "Rapportera: [ny]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Skriv ut rapporter" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Skriv ut rapporter" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Anpassad" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Slutdatum Väljare" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Visa gömma" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tabell" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bytes Bar" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Packets Bar" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Flöden Bar" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Okänd" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Nettoflödet - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Nytt flöde" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Datakälla" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Datakälla" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Dest Port" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Dest Port" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Dest Prefix" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "paket" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Sammanfattande statistik" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP-paketstorleksfördelning (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Paket per flödesfördelning (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Oktetter per flödesfördelning (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Flödestidfördelning (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Du måste välja en statistikrapport eller tryckt rapport!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Du måste bara välja en statistikrapport eller en tryckt rapport (inte båda)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Ogiltiga datum, Slutdatum / Tid är tidigare än Startdatum / Tid!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Ogiltig IP för källadressen!
(Måste vara i form av \"192.168.0.1\")" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Ogiltigt delnät för källadressen!
(Måste vara i form av \"192.168.0.1/255.255.255.0\" eller \"192.168.0.1/24\")" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Ogiltig IP för destinationsadressen!
(Måste vara i form av \"192.168.0.1\")" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Ogiltigt delnät för destinationsadressen!
(Måste vara i form av \"192.168.0.1/255.255.255.0\" eller \"192.168.0.1/24\")" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Ogiltigt värde för källgränssnittet!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Ogiltigt värde för Source Port! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Ogiltigt värde för Source AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Ogiltigt värde för destinationsgränssnittet!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Ogiltigt värde för destinationsporten! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Ogiltigt värde för Destination AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Ogiltigt värde för protokoll! (1- 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Ogiltigt värde för TCP Flagga! (ex: 0x1b eller 0x1b / SA eller SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Ogiltigt värde för Cutoff Octets!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Ogiltigt värde för Cutoff Lines!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Ogiltigt värde för sorteringsfältet!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "FlowView Diagram för %s Typ är %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Maxflöden:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Packets Bar" @@ -1423,721 +1447,733 @@ msgstr "Plugin -> Flow Viewer" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Filtret har raderats" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Filtret har uppdaterats" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Flow Viewer" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Visa" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Spara" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Redigera)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Åtgärder" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d veckan" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d veckor" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d månad" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% d månader" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d år" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Övrigt" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "En komma-avgränsad lista över domännamn för att ta bort från domänen." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Strip Domain Names" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Det här är DNS-servern som används för att lösa namn." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Alternativ DNS-server" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Lös inte DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Använd DNS-servern nedan" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Använd lokal server" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Metoden genom vilken du vill lösa värdnamn." +#~ msgid "CBT" +#~ msgstr "KBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Detta är vägen för att basera vägen för din flödesmappstruktur." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Flödesregister" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Detta är sökvägen till en tillfällig katalog för att göra arbete." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Flow Tools Work Directory" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Vägen till din flödes-katt, flödesfilter och flödesstat-binär." +#~ msgid "PUP" +#~ msgstr "VALP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Flödesverktyg Binärvägen" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Hantera lyssnare" +#~ msgid "EMCON" +#~ msgstr "Emcon" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Enheter" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Utgår" +#~ msgid "CHAOS" +#~ msgstr "KAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Kompression" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Version" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Hur länge ska du hålla dina flödesfiler." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Utgång" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Hur ofta skapar du en ny flödesfil." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "t" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Komprimeringsnivå för flödesfiler. Högre komprimering sparar utrymme men använder mer CPU för att lagra och hämta resultat." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Kompressionsnivå" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "NetFlow-protokollversion som används av enheten." +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow Version" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Katalogstruktur som används för flöden för den här enheten." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Nesting" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Directory som dessa enheter strömmar är i. Den här katalogen måste vara i flödeskatalogen. Lägg inte hela vägen här. Också, inte det om du ändrar sökvägen, måste alla fördefinierade filer inställda för att använda den behöva resas." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Katalog" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (högsta)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Inaktiverad)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools tagged version 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS Prefix Port Aggregation" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS Prefix Aggregation" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Destination Prefix Aggregation" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS Source Prefix Aggregation" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CTMP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Proto Port Aggregation" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Aggregation" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow Source Destination" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow Destination" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Rutt" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow Prefix Aggregation" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow Destination Prefix Aggregation" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow Source Prefix Aggregation" +#~ msgid "RSVP" +#~ msgstr "OSA" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow Proto Port Aggregation" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS Aggregation" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow version 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow version 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow version 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow version 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-OPT" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d minuter" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d minut" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "% d dagar" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Inkludera om:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Rapportparametrar" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Anteckning:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Dest Port (s)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(t ex -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Flödesfilterbegränsningar" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Välj en" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Helt i angiven tidsrymd" +#~ msgid "Src Prefix" +#~ msgstr "Src Prefix" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Starttid i angiven tidsrymd" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Sluttid i specificerad tidsrymd" +#~ msgid "Src Port" +#~ msgstr "Src Port" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Varje del i angiven tidsrymd" +#~ msgid "End Date" +#~ msgstr "Slutdatum" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Full (katalysator)" +#~ msgid "Filter Type" +#~ msgstr "Filternamn" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Prefix Aggregation" +#~ msgid "View" +#~ msgstr "Visa" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Destination Prefix Aggregation" +#~ msgid "Defaults" +#~ msgstr "Standard" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Källa prefix Aggregation" +#~ msgid "Save As" +#~ msgstr "Spara som" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Protocol Port Aggregation" +#~ msgid "Filter Data" +#~ msgstr "Filternamn" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS Aggregation" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "Flera fältposter, separerade med kommatecken, är tillåtna i fälten ovan. Ett minustecken (-) kommer att neka en post (t.ex. -80 för Port, skulle betyda vilken port som helst än 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 rad med etiketter" +#~ msgid "New Query" +#~ msgstr "Ny fråga" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Före" +#~ msgid "Update" +#~ msgstr "Uppdatera" #, fuzzy -#~ msgid "AS" -#~ msgstr "SOM" +#~ msgid "Filter Saved" +#~ msgstr "Filtret sparat" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Gränssnitt" +#~ msgid "Filter Settings Saved" +#~ msgstr "Filtreringsinställningar sparade" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Filtrerat uppdaterat" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Filtrerat uppdaterat" +#~ msgid "Interface" +#~ msgstr "Gränssnitt" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Filtreringsinställningar sparade" +#~ msgid "AS" +#~ msgstr "SOM" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtret sparat" +#~ msgid "Prefix" +#~ msgstr "Före" #, fuzzy -#~ msgid "Update" -#~ msgstr "Uppdatera" +#~ msgid "1 Line with Tags" +#~ msgstr "1 rad med etiketter" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Ny fråga" +#~ msgid "AS Aggregation" +#~ msgstr "AS Aggregation" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "Flera fältposter, separerade med kommatecken, är tillåtna i fälten ovan. Ett minustecken (-) kommer att neka en post (t.ex. -80 för Port, skulle betyda vilken port som helst än 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Protocol Port Aggregation" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Filternamn" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Källa prefix Aggregation" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Spara som" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Destination Prefix Aggregation" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Standard" +#~ msgid "Prefix Aggregation" +#~ msgstr "Prefix Aggregation" #, fuzzy -#~ msgid "View" -#~ msgstr "Visa" +#~ msgid "Full (Catalyst)" +#~ msgstr "Full (katalysator)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Filternamn" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Varje del i angiven tidsrymd" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Slutdatum" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Sluttid i specificerad tidsrymd" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src Port" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Starttid i angiven tidsrymd" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Helt i angiven tidsrymd" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src Prefix" +#~ msgid "Select One" +#~ msgstr "Välj en" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Flödesfilterbegränsningar" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(t ex -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Dest Port (s)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Anteckning:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Rapportparametrar" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Inkludera om:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "% d dagar" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d minut" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d minuter" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow version 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-OPT" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow version 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow version 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow version 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS Aggregation" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow Proto Port Aggregation" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow Source Prefix Aggregation" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow Destination Prefix Aggregation" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "OSA" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow Prefix Aggregation" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow Destination" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow Source Destination" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Rutt" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Aggregation" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Proto Port Aggregation" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS Source Prefix Aggregation" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Destination Prefix Aggregation" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CTMP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS Prefix Aggregation" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS Prefix Port Aggregation" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools tagged version 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Inaktiverad)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (högsta)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Katalog" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Directory som dessa enheter strömmar är i. Den här katalogen måste vara i flödeskatalogen. Lägg inte hela vägen här. Också, inte det om du ändrar sökvägen, måste alla fördefinierade filer inställda för att använda den behöva resas." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Nesting" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Katalogstruktur som används för flöden för den här enheten." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow Version" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "NetFlow-protokollversion som används av enheten." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "Kompressionsnivå" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Komprimeringsnivå för flödesfiler. Högre komprimering sparar utrymme men använder mer CPU för att lagra och hämta resultat." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "t" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Hur ofta skapar du en ny flödesfil." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Utgång" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Hur länge ska du hålla dina flödesfiler." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Version" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Kompression" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "Utgår" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Enheter" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "KAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Hantera lyssnare" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Flödesverktyg Binärvägen" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "Emcon" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Vägen till din flödes-katt, flödesfilter och flödesstat-binär." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Flow Tools Work Directory" #, fuzzy -#~ msgid "PUP" -#~ msgstr "VALP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Detta är sökvägen till en tillfällig katalog för att göra arbete." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Flödesregister" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Detta är vägen för att basera vägen för din flödesmappstruktur." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Metoden genom vilken du vill lösa värdnamn." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Använd lokal server" #, fuzzy -#~ msgid "CBT" -#~ msgstr "KBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Använd DNS-servern nedan" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Lös inte DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Alternativ DNS-server" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Det här är DNS-servern som används för att lösa namn." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Strip Domain Names" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "En komma-avgränsad lista över domännamn för att ta bort från domänen." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Nytt flöde" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Skriv ut rapporter" diff --git a/locales/po/tr-TR.po b/locales/po/tr-TR.po index 0bf6250..7758687 100644 --- a/locales/po/tr-TR.po +++ b/locales/po/tr-TR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:43-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP Kaynak Bağlantı Noktası" msgid "UDP/TCP Port" msgstr "UDP / TCP Bağlantı Noktası" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "Kaynak IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Hedef IP" @@ -98,13 +98,13 @@ msgstr "Çıkış arayüzü" msgid "Input/Output Interface" msgstr "Giriş / Çıkış Arabirimi" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Kaynak Türü" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Hedef AS" @@ -119,7 +119,7 @@ msgstr "Kaynak / Hedef AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Kaynak Öneki" @@ -193,7 +193,7 @@ msgstr "Limit yok" msgid "%s Bytes" msgstr "%s Bayt" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Tümü" @@ -207,7 +207,7 @@ msgstr "Kaynak Bağlantı Noktası" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "akışlar" @@ -216,8 +216,8 @@ msgstr "akışlar" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "B" @@ -226,8 +226,8 @@ msgstr "B" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "paketler" @@ -243,18 +243,18 @@ msgstr "Hedef IP" msgid "Port" msgstr "Port" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Hedef IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "E-Posta Adres" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Protokol" @@ -279,290 +279,295 @@ msgstr "Kullanım Şartları" msgid "Destingation Prefix" msgstr "Hedef Öneki" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "Kaynak IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Hedef IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Kaynak Bağlantı Noktası" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Hedef IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Başlama Zamanı" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Bitiş Zamanı" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Aktif" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / Tr" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Bayraklar" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "Kaynak IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Hedef IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Filtreleri Temizle" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Filtre" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Filtre" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "dinleyici" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Hazır ayarlar" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Rapor: [yeni]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "Baskılı:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "İstatistikler" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "İstatistik Raporları" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Raporları Yazdır" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Programları Yönet" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Adresleri Çöz:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Adresleri Çöz:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Evet" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Hayır" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Alan Sırala:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Minimum Bayt:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Protokoller" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Protokoller" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP Bayrakları" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOS Alanları" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Kaynak Bağlantı Noktası" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Kaynak Arabirimi" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Hedef Limanı" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Hedef Arabirim" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Hedef AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Cihaz [yeni]" msgid "FlowView Listeners" msgstr "FlowView Dinleyicileri" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Arama" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Git" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Filtreleri Ayarla / Yenile" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Temizle" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Filtreleri Temizle" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Dinleyiciler" @@ -750,34 +755,38 @@ msgstr "Aşağıdaki Programları Etkinleştirmek için 'Devam Et'i tıklayın." msgid "You must select at least one Filter." msgstr "En az bir cihaz seçmelisiniz." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Akış Filtreleri" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Günlük Filtreleri" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Varsayılan" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Filtre Adı" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Ana Bilgisayar Adı Çözünürlüğü" @@ -828,7 +837,7 @@ msgstr "Yeni program" msgid "Enter a Report Title for the FlowView Schedule." msgstr "FlowView Takvimi için bir Rapor Başlığı girin." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Etkin" @@ -903,18 +912,22 @@ msgstr "Rapor: [düzenle: %s]" msgid "Report: [new]" msgstr "Rapor: [yeni]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Başlangıç Tarihi Seçicisi" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView Takvimleri" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Eğitim Programları" @@ -924,22 +937,22 @@ msgstr "Eğitim Programları" msgid "Schedule Title" msgstr "Program Başlığı" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Aralık" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Başlangıç Tarihi" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Sonraki Gönder" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "E-posta" @@ -959,25 +972,20 @@ msgstr "Rapor: [düzenle: %s]" msgid "Filter: [new]" msgstr "Rapor: [yeni]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Raporları Yazdır" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Raporları Yazdır" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Özel" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Bitiş Tarihi Seçicisi" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Göster / Gizle" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Tablo" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bayt Çubuğu" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Paket Çubuğu" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Akar Çubuğu" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Bilinmeyen" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Kaktüs Akışı" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Net akış - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Yeni akış" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bayt" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bayt" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Kaynak Türü" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Kaynak Türü" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Hedef AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Hedef Limanı" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Hedef Limanı" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Hedef IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Hedef Öneki" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "paketler" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Özet İstatistikler" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP Paket Boyut Dağılımı (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Akış Dağılımı başına Paketler (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Akış Dağılımına Göre Ekim Sayısı (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Akış Süresi Dağılımı (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Bir İstatistik Raporu veya Basılı Rapor seçmelisiniz!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Sadece bir İstatistik Raporu veya Basılı Rapor seçmelisiniz (ikisini birden değil)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Geçersiz tarihler, Bitiş Tarihi / Saati, Başlangıç Tarihi / Saatinden daha erkendir!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "Kaynak Adres için Geçersiz IP!
('192.168.0.1' şeklinde olmalı)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Kaynak Adres için geçersiz alt ağ!
('192.168.0.1/255.255.255.0' veya '192.168.0.1/24' şeklinde olmalıdır)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "Hedef Adres için Geçersiz IP!
('192.168.0.1' şeklinde olmalı)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Hedef Adres için geçersiz alt ağ!
('192.168.0.1/255.255.255.0' veya '192.168.0.1/24' şeklinde olmalıdır)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Kaynak Arabirimi için geçersiz değer!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Kaynak Bağlantı Noktası için geçersiz değer! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Kaynak AS! İçin geçersiz değer (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Hedef Arayüz için geçersiz değer!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Hedef Bağlantı Noktası için geçersiz değer! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Hedef AS! İçin geçersiz değer (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Protokol için geçersiz değer! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "TCP Bayrağı için geçersiz değer! (örn: 0x1b veya 0x1b / SA veya SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Kesim Octets için geçersiz değer!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Kesme Çizgileri için geçersiz değer!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Sıralama Alanı için geçersiz değer!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "%s için FlowView Şeması Tür %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Maksimum Akış:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Paket Çubuğu" @@ -1423,721 +1447,733 @@ msgstr "Eklentisi -> Flow Viewer" msgid "Plugin -> Flow Admin" msgstr "Eklentisi -> Akış Yöneticisi" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Filtre Silindi" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Filtre Güncellenmiştir" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Akış Görüntüleyici" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Görünüm" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Kaydet" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Düzenle)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Eylemler" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d Hafta" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d Hafta" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d Ay" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% d Ay" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d Yıl" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Çeşitli" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Etki alanından sıyrılacak etki alanı adlarının virgülle ayrılmış listesi." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Strip Etki Alanı Adları" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Bu isimleri çözmek için kullanılan DNS Sunucusudur." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Alternatif DNS Sunucusu" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "DNS'yi Çözme" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Aşağıdaki DNS Sunucusunu Kullanın" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Yerel Sunucuyu Kullan" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Ana bilgisayar adlarını çözümlemek istediğiniz yöntem." +#~ msgid "CBT" +#~ msgstr "TCMB" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Bu, akış klasörü yapınızın yolunu temel alma yoludur." +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Akış Dizini" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Bu iş yapmak için geçici bir dizine giden yoldur." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-AAA" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Akış Araçları İş Rehberi" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Akış kedinize, akış filtresine ve akış statik ikilinize giden yol." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Akış Araçları İkili Yol" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Dinleyicileri Yönet" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Cihazlar" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Bitiş Tarihi" +#~ msgid "CHAOS" +#~ msgstr "KAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "Sıkıştırma" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Versiyon" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-ÖLÇÜM" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Akış dosyalarınızı ne kadar süre saklayacağınız." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Sona erme" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Ne sıklıkta yeni bir Akış Dosyası oluşturulur." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Rotasyon" +#~ msgid "TRUNK-1" +#~ msgstr "Gövde-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Akış dosyalarının sıkıştırma seviyesi. Daha yüksek sıkıştırma, yerden tasarruf sağlar ancak sonuçları saklamak ve almak için daha fazla CPU kullanır." +#~ msgid "TRUNK-2" +#~ msgstr "Gövde-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Sıkıştırma Seviyesi" +#~ msgid "LEAF-1" +#~ msgstr "YAPRAK 1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Cihaz tarafından kullanılan NetFlow Protokolü sürümü." +#~ msgid "LEAF-2" +#~ msgstr "YAPRAK 2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow Sürümü" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Bu cihazın akışlarında kullanılacak Dizin Yapısı." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "yuvalama" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Bu aygıtların aktığı dizindir. Bu dizin Akış Dizini yolunda olmalıdır. Tam yolu buraya koymayın. Ayrıca, yolu değiştirirseniz, kullanmak için önceden tanımlanmış tüm ayar öğelerinin yeniden kaydedilmesi gerekir." +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Rehber" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (En yüksek)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Devre dışı)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools sürüm 5 olarak etiketlendi" +#~ msgid "3PC" +#~ msgstr "3pc" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS Ön Ek Bağlantı Noktası Birleştirmesi" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS Önek Toplaması" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Hedef Önek Toplaması" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS Kaynak Önek Toplaması" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Proto Bağlantı Noktası Birleştirmesi" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Toplaması" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Tam Akış" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow Kaynak Hedefi" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow Hedef" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6 Rota" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow Önek Toplaması" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6 Par" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow Hedef Önek Toplaması" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow Kaynak Önek Toplaması" +#~ msgid "RSVP" +#~ msgstr "RSVP | Lütfen Cevap Veriniz" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow Proto Bağlantı Noktası Birleştirmesi" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS Toplaması" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow sürüm 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow sürüm 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6 ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow sürüm 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6 NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow sürüm 1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6 seçmesi" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d Dakika" +#~ msgid "RSPF" +#~ msgstr "RSPF'yi" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "% d Dakika" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d Gün" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Aşağıdakileri dahil et:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Rapor Parametreleri" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Not:" +#~ msgid "IPIP" +#~ msgstr "ipip" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Hedef Bağlantı Noktaları" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(örneğin, -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "Src IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Akış Filtresi Kısıtlamaları" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Birini seç" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Tamamen Belirtilen Zaman Alanında" +#~ msgid "Src Prefix" +#~ msgstr "Src Öneki" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Belirtilen Zaman Alanında Başlangıç Saati" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Belirtilen Zaman Alanında Bitiş Saati" +#~ msgid "Src Port" +#~ msgstr "Src Limanı" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Belirtilen Zaman İçinde Herhangi Bir Parçası" +#~ msgid "End Date" +#~ msgstr "Bitiş Tarihi" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Dolu (Katalizör)" +#~ msgid "Filter Type" +#~ msgstr "Filtre Adı" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Önek Toplaması" +#~ msgid "View" +#~ msgstr "Görünüm" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Hedef Önek Toplaması" +#~ msgid "Defaults" +#~ msgstr "Varsayılanlar" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Kaynak Önek Toplaması" +#~ msgid "Save As" +#~ msgstr "Farklı Kaydet" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Protokol Bağlantı Noktası Birleştirmesi" +#~ msgid "Filter Data" +#~ msgstr "Filtre Adı" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "Toplama olarak" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "Yukarıdaki alanlara virgülle ayrılmış çoklu alan girişlerine izin verilir. Bir eksi işareti (-) bir girişi engelleyecektir (örneğin, Liman için -80, herhangi bir Bağlantı Noktası anlamına gelir ancak 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "Etiketli 1 Satır" +#~ msgid "New Query" +#~ msgstr "Yeni Sorgu" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Ön Ek" +#~ msgid "Update" +#~ msgstr "Güncelle" #, fuzzy -#~ msgid "AS" -#~ msgstr "GİBİ" +#~ msgid "Filter Saved" +#~ msgstr "Filtre kaydedildi" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Arayüz" +#~ msgid "Filter Settings Saved" +#~ msgstr "Kayıtlı Filtre Ayarları" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Güncelleme Filtresi" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Güncelleme Filtresi" +#~ msgid "Interface" +#~ msgstr "Arayüz" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Kayıtlı Filtre Ayarları" +#~ msgid "AS" +#~ msgstr "GİBİ" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Filtre kaydedildi" +#~ msgid "Prefix" +#~ msgstr "Ön Ek" #, fuzzy -#~ msgid "Update" -#~ msgstr "Güncelle" +#~ msgid "1 Line with Tags" +#~ msgstr "Etiketli 1 Satır" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Yeni Sorgu" +#~ msgid "AS Aggregation" +#~ msgstr "Toplama olarak" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "Yukarıdaki alanlara virgülle ayrılmış çoklu alan girişlerine izin verilir. Bir eksi işareti (-) bir girişi engelleyecektir (örneğin, Liman için -80, herhangi bir Bağlantı Noktası anlamına gelir ancak 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Protokol Bağlantı Noktası Birleştirmesi" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Filtre Adı" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Kaynak Önek Toplaması" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Farklı Kaydet" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Hedef Önek Toplaması" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Varsayılanlar" +#~ msgid "Prefix Aggregation" +#~ msgstr "Önek Toplaması" #, fuzzy -#~ msgid "View" -#~ msgstr "Görünüm" +#~ msgid "Full (Catalyst)" +#~ msgstr "Dolu (Katalizör)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Filtre Adı" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Belirtilen Zaman İçinde Herhangi Bir Parçası" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Bitiş Tarihi" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Belirtilen Zaman Alanında Bitiş Saati" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src Limanı" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Belirtilen Zaman Alanında Başlangıç Saati" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Tamamen Belirtilen Zaman Alanında" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src Öneki" +#~ msgid "Select One" +#~ msgstr "Birini seç" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Akış Filtresi Kısıtlamaları" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(örneğin, -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "Src IP" +#~ msgid "Dest Port(s)" +#~ msgstr "Hedef Bağlantı Noktaları" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Not:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "ipip" +#~ msgid "Report Parameters" +#~ msgstr "Rapor Parametreleri" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Aşağıdakileri dahil et:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d Gün" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "% d Dakika" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d Dakika" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF'yi" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow sürüm 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6 seçmesi" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow sürüm 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6 NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow sürüm 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6 ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow sürüm 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS Toplaması" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow Proto Bağlantı Noktası Birleştirmesi" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow Kaynak Önek Toplaması" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow Hedef Önek Toplaması" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "RSVP | Lütfen Cevap Veriniz" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow Önek Toplaması" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow Hedef" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6 Par" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow Kaynak Hedefi" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6 Rota" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Tam Akış" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Toplaması" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Proto Bağlantı Noktası Birleştirmesi" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS Kaynak Önek Toplaması" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Hedef Önek Toplaması" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS Önek Toplaması" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS Ön Ek Bağlantı Noktası Birleştirmesi" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools sürüm 5 olarak etiketlendi" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Devre dışı)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3pc" +#~ msgid "9 (Highest)" +#~ msgstr "9 (En yüksek)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Rehber" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Bu aygıtların aktığı dizindir. Bu dizin Akış Dizini yolunda olmalıdır. Tam yolu buraya koymayın. Ayrıca, yolu değiştirirseniz, kullanmak için önceden tanımlanmış tüm ayar öğelerinin yeniden kaydedilmesi gerekir." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "yuvalama" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Bu cihazın akışlarında kullanılacak Dizin Yapısı." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow Sürümü" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Cihaz tarafından kullanılan NetFlow Protokolü sürümü." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "Sıkıştırma Seviyesi" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "YAPRAK 2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Akış dosyalarının sıkıştırma seviyesi. Daha yüksek sıkıştırma, yerden tasarruf sağlar ancak sonuçları saklamak ve almak için daha fazla CPU kullanır." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "YAPRAK 1" +#~ msgid "Rotation" +#~ msgstr "Rotasyon" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "Gövde-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Ne sıklıkta yeni bir Akış Dosyası oluşturulur." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "Gövde-1" +#~ msgid "Expiration" +#~ msgstr "Sona erme" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Akış dosyalarınızı ne kadar süre saklayacağınız." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Versiyon" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "Sıkıştırma" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-ÖLÇÜM" +#~ msgid "Expire" +#~ msgstr "Bitiş Tarihi" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Cihazlar" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "KAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Dinleyicileri Yönet" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Akış Araçları İkili Yol" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Akış kedinize, akış filtresine ve akış statik ikilinize giden yol." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Akış Araçları İş Rehberi" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Bu iş yapmak için geçici bir dizine giden yoldur." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Akış Dizini" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-AAA" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Bu, akış klasörü yapınızın yolunu temel alma yoludur." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Ana bilgisayar adlarını çözümlemek istediğiniz yöntem." #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "Yerel Sunucuyu Kullan" #, fuzzy -#~ msgid "CBT" -#~ msgstr "TCMB" +#~ msgid "Use DNS Server Below" +#~ msgstr "Aşağıdaki DNS Sunucusunu Kullanın" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "DNS'yi Çözme" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Alternatif DNS Sunucusu" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Bu isimleri çözmek için kullanılan DNS Sunucusudur." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Strip Etki Alanı Adları" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Etki alanından sıyrılacak etki alanı adlarının virgülle ayrılmış listesi." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Yeni akış" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Raporları Yazdır" diff --git a/locales/po/vi-VN.po b/locales/po/vi-VN.po index 8b33fd1..30b92a9 100644 --- a/locales/po/vi-VN.po +++ b/locales/po/vi-VN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:46-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "Cổng nguồn UDP / TCP" msgid "UDP/TCP Port" msgstr "Cổng UDP / TCP" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "IP nguồn" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "Destination IP" @@ -98,13 +98,13 @@ msgstr "Giao diện đầu ra" msgid "Input/Output Interface" msgstr "Giao diện đầu vào / đầu ra" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "Tên Nguồn" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "Đích đến AS" @@ -119,7 +119,7 @@ msgstr "Nguồn / Đích AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "Tiền tố nguồn" @@ -193,7 +193,7 @@ msgstr "Không giới hạn" msgid "%s Bytes" msgstr "%s byte" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "Tất cả" @@ -207,7 +207,7 @@ msgstr "Cổng nguồn" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "Chảy" @@ -216,8 +216,8 @@ msgstr "Chảy" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "Bytes" @@ -226,8 +226,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "Gói" @@ -243,18 +243,18 @@ msgstr "Destination IP" msgid "Port" msgstr "Cổng" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "Số phận IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "Địa chỉ email" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "Giao thức" @@ -279,290 +279,295 @@ msgstr "ĐKDV" msgid "Destingation Prefix" msgstr "Tiền tố đích" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "IP nguồn" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "Destination IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "Cổng nguồn" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "Destination IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "Thời gian bắt đầu" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "Thời gian kết thúc" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "Kích hoạt" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B /" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "Báo xấu" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "IP nguồn" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "Destination IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "Xóa bộ lọc" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "Bộ lọc" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "Bộ lọc" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "Người nghe" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "Đặt trước" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "Báo cáo: [mới]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "In:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "Thống kê" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "Báo cáo thống kê" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "Báo cáo in" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "Quản lý lịch" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "Giải quyết các địa chỉ:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "Giải quyết các địa chỉ:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "Có" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "Không" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "Trường sắp xếp:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "Byte tối thiểu:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "Giao thức" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "Giao thức" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP Flags" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "Lĩnh vực ĐKDV" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "Cổng nguồn" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "Giao diện nguồn" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "Cổng Dest" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Giao diện Dest" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "Thiết bị [mới]" msgid "FlowView Listeners" msgstr "Trình nghe FlowView" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "Tìm kiếm" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "Đi" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "Đặt / Làm mới Bộ lọc" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "Xóa" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "Xóa bộ lọc" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "Người nghe" @@ -750,34 +755,38 @@ msgstr "Nhấp vào 'Tiếp tục' để bật (các) Lịch biểu sau." msgid "You must select at least one Filter." msgstr "Bạn phải chọn ít nhất một thiết bị." -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "Bộ lọc dòng chảy" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "Bộ lọc" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "Mặc định" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "Tên bộ lọc" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "Nghị quyết tên máy chủ" @@ -828,7 +837,7 @@ msgstr "Kế hoạch mới" msgid "Enter a Report Title for the FlowView Schedule." msgstr "Nhập một Tiêu đề báo cáo cho Lịch trình FlowView." -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "Bật" @@ -903,18 +912,22 @@ msgstr "Báo cáo: [chỉnh sửa: %s]" msgid "Report: [new]" msgstr "Báo cáo: [mới]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "Ngày bắt đầu chọn" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "Lịch trình FlowView" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "Kế hoạch" @@ -924,22 +937,22 @@ msgstr "Kế hoạch" msgid "Schedule Title" msgstr "Lịch trình tiêu đề" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "Interval" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "Ngày bắt đầu" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "Gửi tiếp theo" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "Email" @@ -959,25 +972,20 @@ msgstr "Báo cáo: [chỉnh sửa: %s]" msgid "Filter: [new]" msgstr "Báo cáo: [mới]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "Báo cáo in" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "Báo cáo in" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "Tùy chỉnh" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "Bộ chọn ngày kết thúc" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "Hiện an" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "Bảng" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Thanh byte" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "Gói thanh" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "Thanh chảy" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Không xác định" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Luồng mạng -%" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "Dòng chảy mới" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s byte" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s byte" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "Tên Nguồn" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "Tên Nguồn" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "Cổng Dest" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "Cổng Dest" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Tiền tố Dest" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "Gói" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "Tóm tắt thống kê" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "Phân phối kích thước gói IP (%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "Gói trên mỗi phân phối dòng chảy (%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "Octets trên mỗi phân phối dòng chảy (%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "Phân phối thời gian lưu lượng (%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "Bạn phải chọn Báo cáo thống kê hoặc Báo cáo in!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "Bạn phải chọn chỉ một Báo cáo thống kê hoặc Báo cáo in (không phải cả hai)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "Ngày không hợp lệ, Ngày kết thúc / Thời gian sớm hơn Ngày / Giờ bắt đầu!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "IP không hợp lệ cho Địa chỉ nguồn!
(Phải ở dạng '192.168.0.1')" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Mạng con không hợp lệ cho Địa chỉ nguồn!
(Phải ở dạng '192.168.0.1/255.255.255.0' hoặc '192.168.0.1/24')" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "IP không hợp lệ cho Địa chỉ đích!
(Phải ở dạng '192.168.0.1')" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "Mạng con không hợp lệ cho Địa chỉ đích!
(Phải ở dạng '192.168.0.1/255.255.255.0' hoặc '192.168.0.1/24')" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "Giá trị không hợp lệ cho Giao diện nguồn!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "Giá trị không hợp lệ cho Cổng nguồn! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "Giá trị không hợp lệ cho Nguồn AS! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "Giá trị không hợp lệ cho Giao diện đích!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "Giá trị không hợp lệ cho Cổng đích! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "Giá trị không hợp lệ cho Đích AS! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "Giá trị không hợp lệ cho Giao thức! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "Giá trị không hợp lệ cho Cờ TCP! (ví dụ: 0x1b hoặc 0x1b / SA hoặc SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Giá trị không hợp lệ cho Octoff Cutoff!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "Giá trị không hợp lệ cho Cutoff Lines!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "Giá trị không hợp lệ cho Trường sắp xếp!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "Biểu đồ FlowView cho %s Loại là %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "Dòng tối đa:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Gói thanh" @@ -1423,723 +1447,735 @@ msgstr "Plugin -> Trình xem luồng" msgid "Plugin -> Flow Admin" msgstr "Plugin -> Quản trị luồng" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "Bộ lọc đã bị xóa" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "Bộ lọc đã được cập nhật" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "Trình xem lưu lượng" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "Xem" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "Lưu" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(Sửa)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "Hành động" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "% d tuần" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "% d tuần" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "% d tháng" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "% d tháng" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "% d Năm" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "Linh tinh" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "Một danh sách được phân tách bằng dấu phẩy của các tên miền để tách khỏi miền." +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "Dải tên miền" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "Đây là Máy chủ DNS được sử dụng để phân giải tên." +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "Máy chủ DNS thay thế" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "Không giải quyết DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "Sử dụng máy chủ DNS bên dưới" +#~ msgid "IPENCAP" +#~ msgstr "IPENCAP" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "Sử dụng máy chủ cục bộ" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "Phương pháp mà bạn muốn giải quyết tên máy chủ." +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "Đây là đường dẫn để căn cứ đường dẫn của cấu trúc thư mục luồng của bạn." +#~ msgid "EGP" +#~ msgstr "TRỨNG" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "Thư mục dòng" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "Đây là đường dẫn đến một thư mục tạm thời để làm việc." +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Thư mục công cụ Flow" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "Đường dẫn đến tệp lưu lượng, lưu lượng và bộ lọc lưu lượng của bạn." +#~ msgid "PUP" +#~ msgstr "PUP" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Công cụ lưu lượng Đường dẫn nhị phân" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "Quản lý người nghe" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "Thiết bị" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "Hết hiệu lực" +#~ msgid "CHAOS" +#~ msgstr "CHAOS" #, fuzzy -#~ msgid "Compression" -#~ msgstr "" -#~ "\n" -#~ "Nén" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "Phiên bản" +#~ msgid "DCN-MEAS" +#~ msgstr "VÒI" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "Bao lâu để giữ các tệp lưu lượng của bạn." +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "Hết hạn" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "Tần suất để tạo một tệp Flow mới." +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "Xoay" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "Mức nén của các tệp lưu lượng. Nén cao hơn tiết kiệm không gian nhưng sử dụng nhiều CPU hơn để lưu trữ và truy xuất kết quả." +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "Mức nén" +#~ msgid "LEAF-1" +#~ msgstr "LỚP-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "Phiên bản Giao thức NetFlow được sử dụng bởi thiết bị." +#~ msgid "LEAF-2" +#~ msgstr "LỚP-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "Phiên bản NetFlow" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "Cấu trúc thư mục sẽ được sử dụng cho các luồng cho thiết bị này." +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "Làm tổ" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "Thư mục mà các thiết bị này chảy vào. Thư mục này phải nằm trong đường dẫn Thư mục lưu lượng. Đừng đặt con đường đầy đủ ở đây. Ngoài ra, không phải là nếu bạn thay đổi đường dẫn, tất cả các thiết lập filer được xác định trước để sử dụng nó sẽ phải được lưu lại." +#~ msgid "NETBLT" +#~ msgstr "MẠNG" #, fuzzy -#~ msgid "Directory" -#~ msgstr "Danh mục" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9 (Cao nhất)" +#~ msgid "MERIT-INP" +#~ msgstr "INIT" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0 (Vô hiệu hóa)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools được gắn thẻ phiên bản 5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "Tổng hợp cổng tiền tố NetFlow ToS" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố NetFlow ToS" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS Tổng hợp tiền tố đích" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố nguồn NetFlow ToS" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS Tổng hợp cổng Proto" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS Tập hợp" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "Dòng chảy đầy đủ của NetFlow" +#~ msgid "IPv6" +#~ msgstr "IPv6" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "Điểm đến nguồn NetFlow" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "Điểm đến NetFlow" +#~ msgid "IPv6-Route" +#~ msgstr "Tuyến đường IPv6" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố NetFlow" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố đích NetFlow" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố nguồn NetFlow" +#~ msgid "RSVP" +#~ msgstr "vui lòng phúc đáp" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "Tổng hợp cổng Proto NetFlow" +#~ msgid "GRE" +#~ msgstr "LỚN" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "Tập hợp NetFlow AS" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow phiên bản 7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow phiên bản 6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow phiên bản 5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow phiên bản 1" - +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-Opts" + #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d phút" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d phút" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "% d ngày" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "Bao gồm nếu:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "Thông số báo cáo" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "Ghi chú:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "Cổng Dest" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(ví dụ: -0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "IP Src" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "Ràng buộc bộ lọc dòng chảy" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "Chọn một" +#~ msgid "Src AS" +#~ msgstr "Src NHƯ" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "Hoàn toàn trong khoảng thời gian được chỉ định" +#~ msgid "Src Prefix" +#~ msgstr "Tiền tố Src" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "Thời gian bắt đầu trong khoảng thời gian được chỉ định" +#~ msgid "Src IF" +#~ msgstr "NẾU" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "Thời gian kết thúc trong khoảng thời gian được chỉ định" +#~ msgid "Src Port" +#~ msgstr "Cổng Src" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "Bất kỳ phần nào trong khoảng thời gian được chỉ định" +#~ msgid "End Date" +#~ msgstr "Ngày kết thúc" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "Đầy đủ (Chất xúc tác)" +#~ msgid "Filter Type" +#~ msgstr "Tên bộ lọc" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố" +#~ msgid "View" +#~ msgstr "Xem" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "Tập hợp tiền tố đích" +#~ msgid "Defaults" +#~ msgstr "Mặc định" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "Tổng hợp tiền tố nguồn" +#~ msgid "Save As" +#~ msgstr "Lưu thành" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "Tổng hợp cổng giao thức" +#~ msgid "Filter Data" +#~ msgstr "Tên bộ lọc" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "NHƯ tập hợp" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "Nhiều mục nhập trường, được phân tách bằng dấu phẩy, được cho phép trong các trường ở trên. Dấu trừ (-) sẽ phủ nhận mục nhập (ví dụ -80 cho Cổng, có nghĩa là bất kỳ Cổng nào ngoài 80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1 dòng có thẻ" +#~ msgid "New Query" +#~ msgstr "Truy vấn mới" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "Tiền tố" +#~ msgid "Update" +#~ msgstr "Cập nhật" #, fuzzy -#~ msgid "AS" -#~ msgstr "NHƯ" +#~ msgid "Filter Saved" +#~ msgstr "Bộ lọc đã lưu" #, fuzzy -#~ msgid "Interface" -#~ msgstr "Giao diện" +#~ msgid "Filter Settings Saved" +#~ msgstr "Cài đặt bộ lọc đã lưu" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "Cập nhật bộ lọc" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "Cập nhật bộ lọc" +#~ msgid "Interface" +#~ msgstr "Giao diện" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "Cài đặt bộ lọc đã lưu" +#~ msgid "AS" +#~ msgstr "NHƯ" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "Bộ lọc đã lưu" +#~ msgid "Prefix" +#~ msgstr "Tiền tố" #, fuzzy -#~ msgid "Update" -#~ msgstr "Cập nhật" +#~ msgid "1 Line with Tags" +#~ msgstr "1 dòng có thẻ" #, fuzzy -#~ msgid "New Query" -#~ msgstr "Truy vấn mới" +#~ msgid "AS Aggregation" +#~ msgstr "NHƯ tập hợp" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "Nhiều mục nhập trường, được phân tách bằng dấu phẩy, được cho phép trong các trường ở trên. Dấu trừ (-) sẽ phủ nhận mục nhập (ví dụ -80 cho Cổng, có nghĩa là bất kỳ Cổng nào ngoài 80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "Tổng hợp cổng giao thức" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "Tên bộ lọc" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "Tổng hợp tiền tố nguồn" #, fuzzy -#~ msgid "Save As" -#~ msgstr "Lưu thành" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố đích" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "Mặc định" +#~ msgid "Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố" #, fuzzy -#~ msgid "View" -#~ msgstr "Xem" +#~ msgid "Full (Catalyst)" +#~ msgstr "Đầy đủ (Chất xúc tác)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "Tên bộ lọc" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "Bất kỳ phần nào trong khoảng thời gian được chỉ định" #, fuzzy -#~ msgid "End Date" -#~ msgstr "Ngày kết thúc" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "Thời gian kết thúc trong khoảng thời gian được chỉ định" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Cổng Src" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "Thời gian bắt đầu trong khoảng thời gian được chỉ định" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "NẾU" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "Hoàn toàn trong khoảng thời gian được chỉ định" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Tiền tố Src" +#~ msgid "Select One" +#~ msgstr "Chọn một" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src NHƯ" +#~ msgid "Flow Filter Constraints" +#~ msgstr "Ràng buộc bộ lọc dòng chảy" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(ví dụ: -0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "IP Src" +#~ msgid "Dest Port(s)" +#~ msgstr "Cổng Dest" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "Ghi chú:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "Thông số báo cáo" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "Bao gồm nếu:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "% d ngày" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d phút" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d phút" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow phiên bản 1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-Opts" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow phiên bản 5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow phiên bản 6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow phiên bản 7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "Tập hợp NetFlow AS" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "Tổng hợp cổng Proto NetFlow" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố nguồn NetFlow" #, fuzzy -#~ msgid "GRE" -#~ msgstr "LỚN" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố đích NetFlow" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "vui lòng phúc đáp" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố NetFlow" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "Điểm đến NetFlow" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "Điểm đến nguồn NetFlow" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "Tuyến đường IPv6" +#~ msgid "NetFlow Full Flow" +#~ msgstr "Dòng chảy đầy đủ của NetFlow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS Tập hợp" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS Tổng hợp cổng Proto" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố nguồn NetFlow ToS" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS Tổng hợp tiền tố đích" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "Tập hợp tiền tố NetFlow ToS" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "Tổng hợp cổng tiền tố NetFlow ToS" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools được gắn thẻ phiên bản 5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0 (Vô hiệu hóa)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9 (Cao nhất)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "Danh mục" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "INIT" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "Thư mục mà các thiết bị này chảy vào. Thư mục này phải nằm trong đường dẫn Thư mục lưu lượng. Đừng đặt con đường đầy đủ ở đây. Ngoài ra, không phải là nếu bạn thay đổi đường dẫn, tất cả các thiết lập filer được xác định trước để sử dụng nó sẽ phải được lưu lại." #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "Làm tổ" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "MẠNG" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "Cấu trúc thư mục sẽ được sử dụng cho các luồng cho thiết bị này." #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "Phiên bản NetFlow" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "Phiên bản Giao thức NetFlow được sử dụng bởi thiết bị." #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "Mức nén" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LỚP-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "Mức nén của các tệp lưu lượng. Nén cao hơn tiết kiệm không gian nhưng sử dụng nhiều CPU hơn để lưu trữ và truy xuất kết quả." #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LỚP-1" +#~ msgid "Rotation" +#~ msgstr "Xoay" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "Tần suất để tạo một tệp Flow mới." #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "Hết hạn" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "Bao lâu để giữ các tệp lưu lượng của bạn." #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "Phiên bản" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "" +#~ "\n" +#~ "Nén" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "VÒI" +#~ msgid "Expire" +#~ msgstr "Hết hiệu lực" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "Thiết bị" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "CHAOS" +#~ msgid "Manage Listeners" +#~ msgstr "Quản lý người nghe" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Công cụ lưu lượng Đường dẫn nhị phân" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "Đường dẫn đến tệp lưu lượng, lưu lượng và bộ lọc lưu lượng của bạn." #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Thư mục công cụ Flow" #, fuzzy -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "Đây là đường dẫn đến một thư mục tạm thời để làm việc." #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "Thư mục dòng" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "Đây là đường dẫn để căn cứ đường dẫn của cấu trúc thư mục luồng của bạn." #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "Phương pháp mà bạn muốn giải quyết tên máy chủ." #, fuzzy -#~ msgid "EGP" -#~ msgstr "TRỨNG" +#~ msgid "Use Local Server" +#~ msgstr "Sử dụng máy chủ cục bộ" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "Sử dụng máy chủ DNS bên dưới" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "Không giải quyết DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "IPENCAP" +#~ msgid "Alternate DNS Server" +#~ msgstr "Máy chủ DNS thay thế" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "Đây là Máy chủ DNS được sử dụng để phân giải tên." #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "Dải tên miền" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "Một danh sách được phân tách bằng dấu phẩy của các tên miền để tách khỏi miền." #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "Dòng chảy mới" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "Báo cáo in" diff --git a/locales/po/zh-CN.po b/locales/po/zh-CN.po index 82fbdfe..b76e920 100644 --- a/locales/po/zh-CN.po +++ b/locales/po/zh-CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: flowview on cacti 1.1.34\n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-07-13 04:14+0000\n" "Last-Translator: tomcat \n" "Language-Team: Chinese (Simplified) \n" @@ -54,12 +54,12 @@ msgstr "UDP / TCP源端口" msgid "UDP/TCP Port" msgstr "UDP / TCP端口" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 msgid "Source IP" msgstr "来源IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 msgid "Destination IP" msgstr "目标IP" @@ -87,12 +87,12 @@ msgstr "输出接口" msgid "Input/Output Interface" msgstr "输入/输出接口" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 msgid "Source AS" msgstr "来源AS" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 msgid "Destination AS" msgstr "目标AS" @@ -104,7 +104,7 @@ msgstr "来源/目标AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 msgid "Source Prefix" msgstr "来源前缀" @@ -171,7 +171,7 @@ msgstr "没有限制" msgid "%s Bytes" msgstr "%s Bytes" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 msgid "All" msgstr "所有" @@ -184,7 +184,7 @@ msgstr "源端口" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 msgid "Flows" msgstr "流" @@ -192,8 +192,8 @@ msgstr "流" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 msgid "Bytes" msgstr "Bytes" @@ -201,8 +201,8 @@ msgstr "Bytes" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 msgid "Packets" msgstr "包" @@ -216,17 +216,17 @@ msgstr "目标IP" msgid "Port" msgstr "port" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 msgid "Dest IP" msgstr "目标IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "电子邮件地址" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 msgid "Protocol" msgstr "协议" @@ -247,272 +247,277 @@ msgstr "TOS" msgid "Destingation Prefix" msgstr "目标前缀" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "来源IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "目标IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "源端口" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "目标IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 msgid "Start Time" msgstr "开始时间" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 msgid "End Time" msgstr "结束时间" -#: arrays.php:315 +#: arrays.php:318 msgid "Active" msgstr "活跃" -#: arrays.php:316 +#: arrays.php:319 msgid "B/Pk" msgstr "B/Pk" -#: arrays.php:317 +#: arrays.php:320 msgid "Ts" msgstr "Ts" -#: arrays.php:318 +#: arrays.php:321 msgid "Fl" msgstr "Fl" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 msgid "Flags" msgstr "标志" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "来源IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "目标IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "清除过滤" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 msgid "Filter" msgstr "过滤" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "过滤" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 msgid "Listener" msgstr "监听" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 msgid "Presets" msgstr "预置" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "报告:[新]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "打印:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "统计:" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "选择一个统计报告" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "选择报告打印" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "管理时间表" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "解析地址:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "解析地址:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 msgid "Yes" msgstr "是" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 msgid "No" msgstr "不" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "排序字段:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "最小字节数:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "协议" -#: arrays.php:468 +#: arrays.php:471 msgid "Protocols" msgstr "协议" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 msgid "TCP Flags" msgstr "TCP标志" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 msgid "TOS Fields" msgstr "TOS字段" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "源端口" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 msgid "Source Interface" msgstr "源接口" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "目标端口" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 msgid "Dest Interface" msgstr "目标接口" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 msgid "Dest AS" msgstr "目标AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -584,31 +589,31 @@ msgstr "设备 [新建]" msgid "FlowView Listeners" msgstr "FlowView监听器" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 msgid "Search" msgstr "搜索" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 msgid "Go" msgstr "Go" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "设置/刷新过滤器" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 msgid "Clear" msgstr "清除" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "清除过滤" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 msgid "Listeners" msgstr "监听器" @@ -681,31 +686,35 @@ msgstr "点击“继续”以启用以下计划" msgid "You must select at least one Filter." msgstr "您必须至少选择一个设备。" -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "流量过滤器" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 msgid "Filters" msgstr "过滤器" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 msgid "Default" msgstr "默认" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 msgid "Filter Name" msgstr "过滤器名称" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "RDP" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "主机名解析" @@ -749,7 +758,7 @@ msgstr "新的时间表" msgid "Enter a Report Title for the FlowView Schedule." msgstr "输入FlowView计划的报告标题。" -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 msgid "Enabled" msgstr "启用" @@ -811,16 +820,20 @@ msgstr "报告:[编辑:%s]" msgid "Report: [new]" msgstr "报告:[新]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 msgid "Start Date Selector" msgstr "开始日期选择器" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 msgid "FlowView Schedules" msgstr "FlowView时间表" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 msgid "Schedules" msgstr "时间表" @@ -828,19 +841,19 @@ msgstr "时间表" msgid "Schedule Title" msgstr "日程表标题" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 msgid "Interval" msgstr "间隔" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 msgid "Start Date" msgstr "开始日期" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 msgid "Next Send" msgstr "下一步发送" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 msgid "Email" msgstr "电子邮件" @@ -859,25 +872,20 @@ msgstr "报告:[编辑:%s]" msgid "Filter: [new]" msgstr "报告:[新]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "选择报告打印" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -970,306 +978,324 @@ msgstr "选择报告打印" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 msgid "Custom" msgstr "自定义" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 msgid "End Date Selector" msgstr "结束日期选择器" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 msgid "Show/Hide" msgstr "显示隐藏" -#: functions.php:598 +#: functions.php:602 msgid "Table" msgstr "表" -#: functions.php:602 +#: functions.php:606 msgid "Bytes Bar" msgstr "Bytes Bar" -#: functions.php:606 +#: functions.php:610 msgid "Packets Bar" msgstr "Packets Bar" -#: functions.php:610 +#: functions.php:614 msgid "Flows Bar" msgstr "Flows Bar" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "未知" -#: functions.php:1121 +#: functions.php:1170 msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "Netflow - %" -#: functions.php:1238 -msgid "New Flow" -msgstr "新的流量" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s Bytes" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s Bytes" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "来源AS" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "来源AS" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "目标AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "目标端口" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 msgid "Dest Port" msgstr "目标端口" -#: functions.php:1936 +#: functions.php:2107 msgid "Dest IF" msgstr "目标接口" -#: functions.php:1952 +#: functions.php:2123 msgid "Dest Prefix" msgstr "目标前缀" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "包" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 msgid "Summary Statistics" msgstr "摘要统计" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP数据包大小分布(%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "每个流量分配的数据包(%%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "每流量分布的八位字节(%%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "流量时间分布(%)" -#: functions.php:2489 +#: functions.php:2715 msgid "You must select a Statistics Report or Printed Report!" msgstr "您必须选择一份统计报告或打印报告!" -#: functions.php:2493 +#: functions.php:2719 msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "您只能选择一份统计报告或一份打印报告(不是两种)!" -#: functions.php:2497 +#: functions.php:2723 msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "日期无效,结束日期/时间早于开始日期/时间!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "源地址IP地址无效

(必须采用'192.168.0.1'的形式)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "无效的源地址子网(
)(必须采用'192.168.0.1/255.255.255.0'或'192.168.0.1/24'的形式)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "目标地址IP地址无效

(必须采用'192.168.0.1'的形式)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "目标地址!
无效子网(必须采用'192.168.0.1/255.255.255.0'或'192.168.0.1/24'的形式)" -#: functions.php:2578 +#: functions.php:2804 msgid "Invalid value for Source Interface!" msgstr "源接口的值无效!" -#: functions.php:2594 +#: functions.php:2820 msgid "Invalid value for Source Port! (0 - 65535)" msgstr "源端口的值无效! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 msgid "Invalid value for Source AS! (0 - 65535)" msgstr "源AS的值无效! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 msgid "Invalid value for Destination Interface!" msgstr "目标接口的值无效!" -#: functions.php:2642 +#: functions.php:2868 msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "目标端口的值无效! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "目标AS的值无效! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 msgid "Invalid value for Protocol! (1 - 255)" msgstr "Protocol的值无效! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "TCP标志的值无效! (例如:0x1b或0x1b / SA或SA / SA)" -#: functions.php:2695 +#: functions.php:2921 msgid "Invalid value for Cutoff Octets!" msgstr "截止字节的值无效!" -#: functions.php:2702 +#: functions.php:2928 msgid "Invalid value for Cutoff Lines!" msgstr "截止线的值无效!" -#: functions.php:2709 +#: functions.php:2935 msgid "Invalid value for Sort Field!" msgstr "排序字段的值无效!" -#: functions.php:2736 +#: functions.php:2962 #, php-format msgid "FlowView Chart for %s Type is %s" msgstr "FlowView图表 %s 类型是 %s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "最大流量:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "Packets Bar" @@ -1284,565 +1310,577 @@ msgstr "插件 - >流程查看器" msgid "Plugin -> Flow Admin" msgstr "插件 - > Flow Admin" -#: setup.php:137 +#: setup.php:141 msgid "The Filter has been Deleted" msgstr "过滤器已被删除" -#: setup.php:138 +#: setup.php:142 msgid "The Filter has been Updated" msgstr "过滤器已更新" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 msgid "Flow Viewer" msgstr "流量查看器" -#: setup.php:165 +#: setup.php:174 msgid "(view)" msgstr "(视图)" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 msgid "(save)" msgstr "(保存)" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 msgid "(edit)" msgstr "(编辑)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 msgid "(actions)" msgstr "(动作)" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, php-format msgid "%d Week" msgstr "%d 周" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, php-format msgid "%d Weeks" msgstr "%d 周" -#: setup.php:312 +#: setup.php:321 #, php-format msgid "%d Month" msgstr "%d 月" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, php-format msgid "%d Months" msgstr "%d 月" -#: setup.php:317 +#: setup.php:326 #, php-format msgid "%d Year" msgstr "%d 年" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "其他" -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "逗号分隔的域名清单,以从域中剥离。" +#~ msgid "TCP" +#~ msgstr "TCP" -#~ msgid "Strip Domain Names" -#~ msgstr "剥离域名" +#~ msgid "UDP" +#~ msgstr "UDP" -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "这是用于解析名称的DNS服务器。" +#~ msgid "ICMP" +#~ msgstr "ICMP" -#~ msgid "Alternate DNS Server" -#~ msgstr "备用DNS服务器" +#~ msgid "IGMP" +#~ msgstr "ICMP" -#, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "不要解析DNS" +#~ msgid "GGP" +#~ msgstr "ICMP" -#, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "使用备用DNS服务器" +#~ msgid "IPENCAP" +#~ msgstr "ICMP" -#, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "使用本地服务器" +#~ msgid "ST" +#~ msgstr "ICMP" -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "您希望解析主机名的方法。" +#~ msgid "CBT" +#~ msgstr "ICMP" -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "这是基于流文件夹结构路径的路径。" +#~ msgid "EGP" +#~ msgstr "ICMP" -#~ msgid "Flows Directory" -#~ msgstr "流量目录" +#~ msgid "IGP" +#~ msgstr "ICMP" -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "这是临时目录执行工作的路径。" +#~ msgid "BBN-RCC-MON" +#~ msgstr "ICMP" -#~ msgid "Flow Tools Work Directory" -#~ msgstr "流量工具工作目录" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "流程猫,流量过滤器和流量统计二进制文件的路径。" +#~ msgid "PUP" +#~ msgstr "PUP" -#~ msgid "Flow Tools Binary Path" -#~ msgstr "流量工具执行文件路径" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" -#~ msgid "Manage Listeners" -#~ msgstr "管理侦听器" +#~ msgid "EMCON" +#~ msgstr "EMCON" -#~ msgid "No Devices" -#~ msgstr "没有设备" +#~ msgid "XNET" +#~ msgstr "XNET" -#~ msgid "Expire" -#~ msgstr "到期" +#~ msgid "CHAOS" +#~ msgstr "XNET" -#~ msgid "Compression" -#~ msgstr "压缩" +#~ msgid "MUX" +#~ msgstr "MUX" -#~ msgid "Version" -#~ msgstr "版本" +#~ msgid "DCN-MEAS" +#~ msgstr "MUX" -#~ msgid "How long to keep your flow files." -#~ msgstr "保存流文件需要多长时间。" +#~ msgid "HMP" +#~ msgstr "HMP" -#~ msgid "Expiration" -#~ msgstr "到期" +#~ msgid "PRM" +#~ msgstr "HMP" -#~ msgid "How often to create a new Flow File." -#~ msgstr "多久创建一个新的Flow File。" +#~ msgid "XNS-IDP" +#~ msgstr "HMP" -#~ msgid "Rotation" -#~ msgstr "轮流" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "流文件的压缩级别。 较高的压缩率可节省空间,但会使用更多CPU来存储和检索结果。" +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-1" -#~ msgid "Compression Level" -#~ msgstr "压缩级别" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "设备使用的NetFlow协议版本。" +#~ msgid "LEAF-2" +#~ msgstr "LEAF-1" -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow版本" +#~ msgid "RDP" +#~ msgstr "RDP" -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "目录结构将用于此设备的流程。" +#~ msgid "IRTP" +#~ msgstr "RDP" -#~ msgid "Nesting" -#~ msgstr "嵌套" +#~ msgid "ISO-TP4" +#~ msgstr "RDP" -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "此设备流入的目录位于此目录中。此目录必须位于Flow Directory路径中。 不要把完整的路径放在这里。 此外,不是如果你改变路径,所有预定义的文件管理器设置为使用它将不得不重新保存。" +#~ msgid "NETBLT" +#~ msgstr "RDP" -#~ msgid "Directory" -#~ msgstr "目录" +#~ msgid "MFE-NSP" +#~ msgstr "RDP" -#~ msgid "9 (Highest)" -#~ msgstr "9(最高)" +#~ msgid "MERIT-INP" +#~ msgstr "RDP" -#~ msgid "0 (Disabled)" -#~ msgstr "0(禁用)" +#~ msgid "DCCP" +#~ msgstr "RDP" -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "流量工具标签版本5" +#~ msgid "3PC" +#~ msgstr "RDP" -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS前缀端口聚合" +#~ msgid "IDPR" +#~ msgstr "RDP" -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS前缀聚合" +#~ msgid "XTP" +#~ msgstr "RDP" -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS目标前缀聚合" +#~ msgid "DDP" +#~ msgstr "RDP" -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS源前缀聚合" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS原型端口聚合" +#~ msgid "TP++" +#~ msgstr "IDPR-CMTP" -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS聚合" +#~ msgid "IL" +#~ msgstr "IL" -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6" -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow源目标" +#~ msgid "SDRP" +#~ msgstr "SDRP" -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow目标" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6-Route" -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow前缀聚合" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6-Frag" -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow目标前缀聚合" +#~ msgid "IDRP" +#~ msgstr "IDRP" -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow源前缀聚合" +#~ msgid "RSVP" +#~ msgstr "RSVP" -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow原型端口聚合" +#~ msgid "GRE" +#~ msgstr "GRE" -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS聚合" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow版本7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow版本6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6-ICMP" -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow版本5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6-ICMP" -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow版本1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6-ICMP" -#~ msgid "%d Minutes" -#~ msgstr "%d 分钟" +#~ msgid "RSPF" +#~ msgstr "RSPF" -#~ msgid "%d Minute" -#~ msgstr "%d 分钟" +#~ msgid "VMTP" +#~ msgstr "VMTP" -#~ msgid "%d Days" -#~ msgstr "%d 天" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" -#~ msgid "Include if:" -#~ msgstr "包含接口:" +#~ msgid "OSPF" +#~ msgstr "OSPF" -#~ msgid "Report Parameters" -#~ msgstr "报告参数" +#~ msgid "MTP" +#~ msgstr "MTP" -#~ msgid "Note:" -#~ msgstr "注意:" +#~ msgid "IPIP" +#~ msgstr "IPIP" -#~ msgid "Dest Port(s)" -#~ msgstr "目标端口" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(e.g., -0x0b/0x0F)" +#~ msgid "Src IP" +#~ msgstr "源IP" -#~ msgid "Flow Filter Constraints" -#~ msgstr "流量过滤器限制" +#~ msgid "Src/Dest IP" +#~ msgstr "源/目标IP" -#~ msgid "Select One" -#~ msgstr "选择一个" +#~ msgid "Src AS" +#~ msgstr "源AS" -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "在指定的时间范围内全部" +#~ msgid "Src Prefix" +#~ msgstr "源前缀" -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "在指定的时间范围内开始时间" +#~ msgid "Src IF" +#~ msgstr "源接口" -#~ msgid "End Time in Specified Time Span" -#~ msgstr "在指定的时间范围内结束时间" +#~ msgid "Src Port" +#~ msgstr "源端口" -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "指定时间范围内的任何部分" +#~ msgid "End Date" +#~ msgstr "结束日期" -#~ msgid "Full (Catalyst)" -#~ msgstr "全(催化剂)" +#, fuzzy +#~ msgid "Filter Type" +#~ msgstr "过滤器名称" -#~ msgid "Prefix Aggregation" -#~ msgstr "前缀聚合" +#~ msgid "View" +#~ msgstr "显示" -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "目标前缀聚合" +#~ msgid "Defaults" +#~ msgstr "默认" -#~ msgid "Source Prefix Aggregation" -#~ msgstr "来源前缀聚合" +#~ msgid "Save As" +#~ msgstr "另存为" -#~ msgid "Protocol Port Aggregation" -#~ msgstr "协议端口聚合" +#, fuzzy +#~ msgid "Filter Data" +#~ msgstr "过滤器名称" -#~ msgid "AS Aggregation" -#~ msgstr "AS聚合" +#, fuzzy +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "在上面的字段中允许使用逗号分隔的多个字段条目。 减号( - )将取消一个条目(例如,端口为-80,意味着除80之外的任何端口)" -#~ msgid "1 Line with Tags" -#~ msgstr "1行标签" +#~ msgid "New Query" +#~ msgstr "新查询" -#~ msgid "Prefix" -#~ msgstr "前缀" +#~ msgid "Update" +#~ msgstr "更新" -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "过滤器已保存" -#~ msgid "Interface" -#~ msgstr "接口" +#, fuzzy +#~ msgid "Filter Settings Saved" +#~ msgstr "过滤器设置已保存" + +#~ msgid "Filter Updated" +#~ msgstr "过滤器更新" #~ msgid "IP" #~ msgstr "IP" -#~ msgid "Filter Updated" -#~ msgstr "过滤器更新" +#~ msgid "Interface" +#~ msgstr "接口" -#, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "过滤器设置已保存" +#~ msgid "AS" +#~ msgstr "AS" -#~ msgid "Filter Saved" -#~ msgstr "过滤器已保存" +#~ msgid "Prefix" +#~ msgstr "前缀" -#~ msgid "Update" -#~ msgstr "更新" +#~ msgid "1 Line with Tags" +#~ msgstr "1行标签" -#~ msgid "New Query" -#~ msgstr "新查询" +#~ msgid "AS Aggregation" +#~ msgstr "AS聚合" -#, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "在上面的字段中允许使用逗号分隔的多个字段条目。 减号( - )将取消一个条目(例如,端口为-80,意味着除80之外的任何端口)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "协议端口聚合" -#, fuzzy -#~ msgid "Filter Data" -#~ msgstr "过滤器名称" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "来源前缀聚合" -#~ msgid "Save As" -#~ msgstr "另存为" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "目标前缀聚合" -#~ msgid "Defaults" -#~ msgstr "默认" +#~ msgid "Prefix Aggregation" +#~ msgstr "前缀聚合" -#~ msgid "View" -#~ msgstr "显示" +#~ msgid "Full (Catalyst)" +#~ msgstr "全(催化剂)" -#, fuzzy -#~ msgid "Filter Type" -#~ msgstr "过滤器名称" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "指定时间范围内的任何部分" -#~ msgid "End Date" -#~ msgstr "结束日期" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "在指定的时间范围内结束时间" -#~ msgid "Src Port" -#~ msgstr "源端口" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "在指定的时间范围内开始时间" -#~ msgid "Src IF" -#~ msgstr "源接口" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "在指定的时间范围内全部" -#~ msgid "Src Prefix" -#~ msgstr "源前缀" +#~ msgid "Select One" +#~ msgstr "选择一个" -#~ msgid "Src AS" -#~ msgstr "源AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "流量过滤器限制" -#~ msgid "Src/Dest IP" -#~ msgstr "源/目标IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(e.g., -0x0b/0x0F)" -#~ msgid "Src IP" -#~ msgstr "源IP" +#~ msgid "Dest Port(s)" +#~ msgstr "目标端口" -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "注意:" -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "报告参数" -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "包含接口:" -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d 天" -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d 分钟" -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d 分钟" -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow版本1" -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow版本5" -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow版本6" -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6-ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow版本7" -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS聚合" -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow原型端口聚合" -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow源前缀聚合" -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow目标前缀聚合" -#~ msgid "RSVP" -#~ msgstr "RSVP" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow前缀聚合" -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow目标" -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6-Frag" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow源目标" -#~ msgid "IPv6-Route" -#~ msgstr "IPv6-Route" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS聚合" -#~ msgid "IPv6" -#~ msgstr "IPv6" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS原型端口聚合" -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS源前缀聚合" -#~ msgid "TP++" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS目标前缀聚合" -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS前缀聚合" -#~ msgid "DDP" -#~ msgstr "RDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS前缀端口聚合" -#~ msgid "XTP" -#~ msgstr "RDP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "流量工具标签版本5" -#~ msgid "IDPR" -#~ msgstr "RDP" +#~ msgid "0 (Disabled)" +#~ msgstr "0(禁用)" -#~ msgid "3PC" -#~ msgstr "RDP" +#~ msgid "9 (Highest)" +#~ msgstr "9(最高)" -#~ msgid "DCCP" -#~ msgstr "RDP" +#~ msgid "Directory" +#~ msgstr "目录" -#~ msgid "MERIT-INP" -#~ msgstr "RDP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "此设备流入的目录位于此目录中。此目录必须位于Flow Directory路径中。 不要把完整的路径放在这里。 此外,不是如果你改变路径,所有预定义的文件管理器设置为使用它将不得不重新保存。" -#~ msgid "MFE-NSP" -#~ msgstr "RDP" +#~ msgid "Nesting" +#~ msgstr "嵌套" -#~ msgid "NETBLT" -#~ msgstr "RDP" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "目录结构将用于此设备的流程。" -#~ msgid "ISO-TP4" -#~ msgstr "RDP" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow版本" -#~ msgid "IRTP" -#~ msgstr "RDP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "设备使用的NetFlow协议版本。" -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "压缩级别" -#~ msgid "LEAF-2" -#~ msgstr "LEAF-1" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "流文件的压缩级别。 较高的压缩率可节省空间,但会使用更多CPU来存储和检索结果。" -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "轮流" -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-1" +#~ msgid "How often to create a new Flow File." +#~ msgstr "多久创建一个新的Flow File。" -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "到期" -#~ msgid "XNS-IDP" -#~ msgstr "HMP" +#~ msgid "How long to keep your flow files." +#~ msgstr "保存流文件需要多长时间。" -#~ msgid "PRM" -#~ msgstr "HMP" +#~ msgid "Version" +#~ msgstr "版本" -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "压缩" -#~ msgid "DCN-MEAS" -#~ msgstr "MUX" +#~ msgid "Expire" +#~ msgstr "到期" -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "没有设备" -#~ msgid "CHAOS" -#~ msgstr "XNET" +#~ msgid "Manage Listeners" +#~ msgstr "管理侦听器" -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "流量工具执行文件路径" -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "流程猫,流量过滤器和流量统计二进制文件的路径。" -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "流量工具工作目录" -#~ msgid "PUP" -#~ msgstr "PUP" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "这是临时目录执行工作的路径。" -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "流量目录" -#~ msgid "BBN-RCC-MON" -#~ msgstr "ICMP" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "这是基于流文件夹结构路径的路径。" -#~ msgid "IGP" -#~ msgstr "ICMP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "您希望解析主机名的方法。" -#~ msgid "EGP" -#~ msgstr "ICMP" +#, fuzzy +#~ msgid "Use Local Server" +#~ msgstr "使用本地服务器" -#~ msgid "CBT" -#~ msgstr "ICMP" +#, fuzzy +#~ msgid "Use DNS Server Below" +#~ msgstr "使用备用DNS服务器" -#~ msgid "ST" -#~ msgstr "ICMP" +#, fuzzy +#~ msgid "Don't Resolve DNS" +#~ msgstr "不要解析DNS" -#~ msgid "IPENCAP" -#~ msgstr "ICMP" +#~ msgid "Alternate DNS Server" +#~ msgstr "备用DNS服务器" -#~ msgid "GGP" -#~ msgstr "ICMP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "这是用于解析名称的DNS服务器。" -#~ msgid "IGMP" -#~ msgstr "ICMP" +#~ msgid "Strip Domain Names" +#~ msgstr "剥离域名" -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "逗号分隔的域名清单,以从域中剥离。" -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "新的流量" -#~ msgid "TCP" -#~ msgstr "TCP" +#, fuzzy +#~ msgid "Select a Filter to display data" +#~ msgstr "选择报告打印" diff --git a/locales/po/zh-TW.po b/locales/po/zh-TW.po index 578c15e..cd37e45 100644 --- a/locales/po/zh-TW.po +++ b/locales/po/zh-TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: developers@cacti.net\n" -"POT-Creation-Date: 2020-01-27 21:27-0500\n" +"POT-Creation-Date: 2020-11-01 13:08-0500\n" "PO-Revision-Date: 2019-03-18 21:48-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -57,13 +57,13 @@ msgstr "UDP / TCP源端口" msgid "UDP/TCP Port" msgstr "UDP / TCP端口" -#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:305 arrays.php:321 -#: arrays.php:333 arrays.php:492 functions.php:1916 +#: arrays.php:37 arrays.php:213 arrays.php:219 arrays.php:308 arrays.php:324 +#: arrays.php:336 arrays.php:495 functions.php:2087 #, fuzzy msgid "Source IP" msgstr "來源IP" -#: arrays.php:38 arrays.php:207 arrays.php:307 arrays.php:322 arrays.php:336 +#: arrays.php:38 arrays.php:207 arrays.php:310 arrays.php:325 arrays.php:339 #, fuzzy msgid "Destination IP" msgstr "目的 IP" @@ -98,13 +98,13 @@ msgstr "輸出接口" msgid "Input/Output Interface" msgstr "輸入/輸出接口" -#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:324 arrays.php:516 -#: functions.php:1940 +#: arrays.php:48 arrays.php:250 arrays.php:262 arrays.php:327 arrays.php:519 +#: functions.php:2111 #, fuzzy msgid "Source AS" msgstr "資料來源" -#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:325 +#: arrays.php:49 arrays.php:256 arrays.php:263 arrays.php:328 #, fuzzy msgid "Destination AS" msgstr "目的地AS" @@ -119,7 +119,7 @@ msgstr "來源/目的地AS" msgid "IP ToS" msgstr "IP ToS" -#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:1948 +#: arrays.php:54 arrays.php:282 arrays.php:294 functions.php:2119 #, fuzzy msgid "Source Prefix" msgstr "來源前綴" @@ -193,7 +193,7 @@ msgstr "沒有限制" msgid "%s Bytes" msgstr "%s字節" -#: arrays.php:104 arrays.php:380 +#: arrays.php:104 arrays.php:383 flowview_filters.php:366 #, fuzzy msgid "All" msgstr "全部" @@ -207,7 +207,7 @@ msgstr "源端口" #: arrays.php:202 arrays.php:208 arrays.php:214 arrays.php:221 arrays.php:227 #: arrays.php:233 arrays.php:239 arrays.php:245 arrays.php:251 arrays.php:257 #: arrays.php:264 arrays.php:270 arrays.php:277 arrays.php:283 arrays.php:289 -#: arrays.php:296 functions.php:909 functions.php:1968 functions.php:2138 +#: arrays.php:296 functions.php:931 functions.php:2139 functions.php:2364 #, fuzzy msgid "Flows" msgstr "資料流" @@ -216,8 +216,8 @@ msgstr "資料流" #: arrays.php:203 arrays.php:209 arrays.php:215 arrays.php:222 arrays.php:228 #: arrays.php:234 arrays.php:240 arrays.php:246 arrays.php:252 arrays.php:258 #: arrays.php:265 arrays.php:271 arrays.php:278 arrays.php:284 arrays.php:290 -#: arrays.php:297 arrays.php:312 arrays.php:326 arrays.php:341 arrays.php:347 -#: functions.php:862 functions.php:1972 functions.php:2136 +#: arrays.php:297 arrays.php:315 arrays.php:329 arrays.php:344 arrays.php:350 +#: functions.php:875 functions.php:2143 functions.php:2362 #, fuzzy msgid "Bytes" msgstr "位元組" @@ -226,8 +226,8 @@ msgstr "位元組" #: arrays.php:204 arrays.php:210 arrays.php:216 arrays.php:223 arrays.php:229 #: arrays.php:235 arrays.php:241 arrays.php:247 arrays.php:253 arrays.php:259 #: arrays.php:266 arrays.php:272 arrays.php:279 arrays.php:285 arrays.php:291 -#: arrays.php:298 arrays.php:311 arrays.php:327 arrays.php:340 arrays.php:346 -#: functions.php:956 functions.php:1976 functions.php:2137 +#: arrays.php:298 arrays.php:314 arrays.php:330 arrays.php:343 arrays.php:349 +#: functions.php:987 functions.php:2147 functions.php:2363 #, fuzzy msgid "Packets" msgstr "封包" @@ -243,18 +243,18 @@ msgstr "目的 IP" msgid "Port" msgstr "端口" -#: arrays.php:220 arrays.php:524 functions.php:1920 +#: arrays.php:220 arrays.php:527 functions.php:2091 #, fuzzy msgid "Dest IP" msgstr "目的地IP" -#: arrays.php:226 functions.php:1912 +#: arrays.php:226 functions.php:2083 #, fuzzy msgid "IP Address" msgstr "電子郵件信箱" -#: arrays.php:232 arrays.php:308 arrays.php:323 arrays.php:338 -#: functions.php:1956 +#: arrays.php:232 arrays.php:311 arrays.php:326 arrays.php:341 +#: functions.php:2127 #, fuzzy msgid "Protocol" msgstr "協議" @@ -279,290 +279,295 @@ msgstr "服務條款" msgid "Destingation Prefix" msgstr "目的地前綴" -#: arrays.php:304 arrays.php:332 functions.php:1932 +#: arrays.php:301 functions.php:517 functions.php:2288 +#, fuzzy +msgid "N/A" +msgstr "BNA" + +#: arrays.php:307 arrays.php:335 functions.php:2103 #, fuzzy msgid "Source IF" msgstr "來源IP" -#: arrays.php:306 arrays.php:335 +#: arrays.php:309 arrays.php:338 #, fuzzy msgid "Destination IF" msgstr "目的 IP" -#: arrays.php:309 arrays.php:334 functions.php:1924 +#: arrays.php:312 arrays.php:337 functions.php:2095 #, fuzzy msgid "Source Port" msgstr "源端口" -#: arrays.php:310 arrays.php:337 +#: arrays.php:313 arrays.php:340 #, fuzzy msgid "Destination Port" msgstr "目的 IP" -#: arrays.php:313 arrays.php:330 flowview_schedules.php:85 functions.php:1880 +#: arrays.php:316 arrays.php:333 flowview_schedules.php:85 functions.php:2051 #, fuzzy msgid "Start Time" msgstr "開始時間" -#: arrays.php:314 arrays.php:331 functions.php:1884 +#: arrays.php:317 arrays.php:334 functions.php:2055 #, fuzzy msgid "End Time" msgstr "結束時間" -#: arrays.php:315 +#: arrays.php:318 #, fuzzy msgid "Active" msgstr "啟用" -#: arrays.php:316 +#: arrays.php:319 #, fuzzy msgid "B/Pk" msgstr "B / PK" -#: arrays.php:317 +#: arrays.php:320 #, fuzzy msgid "Ts" msgstr "TS" -#: arrays.php:318 +#: arrays.php:321 #, fuzzy msgid "Fl" msgstr "FL" -#: arrays.php:339 functions.php:1964 +#: arrays.php:342 functions.php:2135 #, fuzzy msgid "Flags" msgstr "各式旗幟" -#: arrays.php:344 +#: arrays.php:347 #, fuzzy msgid "Source" msgstr "來源IP" -#: arrays.php:345 +#: arrays.php:348 #, fuzzy msgid "Destination" msgstr "目的 IP" -#: arrays.php:362 +#: arrays.php:365 #, fuzzy msgid "General Filters" msgstr "清除過濾器" -#: arrays.php:365 functions.php:389 +#: arrays.php:368 functions.php:389 #, fuzzy msgid "Filter" msgstr "篩選" -#: arrays.php:366 +#: arrays.php:369 msgid "The Saved Filter to display." msgstr "" -#: arrays.php:369 +#: arrays.php:372 #, fuzzy msgid "New Filter" msgstr "篩選" -#: arrays.php:374 flowview_filters.php:325 +#: arrays.php:377 flowview_filters.php:324 #, fuzzy msgid "Listener" msgstr "成員" -#: arrays.php:375 +#: arrays.php:378 msgid "The Listener to use for the Filter." msgstr "" -#: arrays.php:383 +#: arrays.php:386 #, fuzzy msgid "Presets" msgstr "預設" -#: arrays.php:384 +#: arrays.php:387 msgid "If this Filter is based upon a pre-defined Timespan, select it here." msgstr "" -#: arrays.php:393 +#: arrays.php:396 msgid "Detailed Filter Criteria" msgstr "" -#: arrays.php:396 flowview_filters.php:330 +#: arrays.php:399 flowview_filters.php:329 #, fuzzy msgid "Report Type" msgstr "報告:[新]" -#: arrays.php:397 +#: arrays.php:400 msgid "The Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Printed" msgstr "印刷:" -#: arrays.php:400 +#: arrays.php:403 #, fuzzy msgid "Statistical" msgstr "統計" -#: arrays.php:404 +#: arrays.php:407 #, fuzzy msgid "Statistical Report" msgstr "統計報告" -#: arrays.php:405 +#: arrays.php:408 msgid "The Display Report Type to use by default for this Filter when creating a Report." msgstr "" -#: arrays.php:412 +#: arrays.php:415 #, fuzzy msgid "Printed Report" msgstr "打印報告" -#: arrays.php:413 +#: arrays.php:416 msgid "The Printed Report Type to use by default for this Filter when creating a Printed Report." msgstr "" -#: arrays.php:420 +#: arrays.php:423 #, fuzzy msgid "Range Rules" msgstr "管理計劃" -#: arrays.php:421 +#: arrays.php:424 msgid "Constrain the Filter Data by these time filter rules." msgstr "" -#: arrays.php:428 +#: arrays.php:431 #, fuzzy msgid "Resolve IP's" msgstr "解決地址:" -#: arrays.php:429 +#: arrays.php:432 #, fuzzy msgid "Resolve IP Addresses to Domain Names." msgstr "解決地址:" -#: arrays.php:434 flowview_schedules.php:523 +#: arrays.php:437 flowview_schedules.php:551 #, fuzzy msgid "Yes" msgstr "是" -#: arrays.php:435 flowview_schedules.php:523 +#: arrays.php:438 flowview_schedules.php:551 #, fuzzy msgid "No" msgstr "否" -#: arrays.php:439 flowview_filters.php:340 functions.php:470 +#: arrays.php:442 flowview_filters.php:339 functions.php:470 #, fuzzy msgid "Sort Field" msgstr "排序字段:" -#: arrays.php:440 +#: arrays.php:443 msgid "The default Sort Field for the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:447 +#: arrays.php:450 msgid "Maximum Rows" msgstr "" -#: arrays.php:448 +#: arrays.php:451 msgid "The Maximum Rows to provide in the Filter. This setting will be applied for any Scheduled Reports." msgstr "" -#: arrays.php:455 +#: arrays.php:458 #, fuzzy msgid "Minimum Bytes" msgstr "最小字節數:" -#: arrays.php:456 +#: arrays.php:459 msgid "The Minimum Total Bytes to consider for the Filter. Any flow totals that are less than this many bytes will be ignored." msgstr "" -#: arrays.php:465 +#: arrays.php:468 #, fuzzy msgid "Protocol Filters" msgstr "協定" -#: arrays.php:468 +#: arrays.php:471 #, fuzzy msgid "Protocols" msgstr "協定" -#: arrays.php:469 +#: arrays.php:472 msgid "Select the Specific Protocol for the Filter." msgstr "" -#: arrays.php:476 +#: arrays.php:479 #, fuzzy msgid "TCP Flags" msgstr "TCP標誌" -#: arrays.php:477 +#: arrays.php:480 msgid "The TCP Flags to search for in the Filter. This can be a comma delimited list of TCP Flags" msgstr "" -#: arrays.php:484 +#: arrays.php:487 #, fuzzy msgid "TOS Fields" msgstr "TOS領域" -#: arrays.php:485 +#: arrays.php:488 msgid "The TOS Fields to search for in the Filter. This can be a comma delimited list of TOS Fields" msgstr "" -#: arrays.php:493 +#: arrays.php:496 msgid "Filter on the select Source IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:500 +#: arrays.php:503 #, fuzzy msgid "Source Ports" msgstr "源端口" -#: arrays.php:501 +#: arrays.php:504 msgid "Filter on the select Source Ports for in the Filter. This can be a comma delimited list of Source Ports." msgstr "" -#: arrays.php:508 +#: arrays.php:511 #, fuzzy msgid "Source Interface" msgstr "源接口" -#: arrays.php:509 +#: arrays.php:512 msgid "Filter on the select Source Interface for in the Filter. This can be a comma delimited list of Source Interfaces" msgstr "" -#: arrays.php:517 +#: arrays.php:520 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Source AS's" msgstr "" -#: arrays.php:525 +#: arrays.php:528 msgid "Filter on the select Destination IP for in the Filter. This can be a comma delimited list of IPv4 or IPv6 addresses, or a comma delimited list of IPv4 or IPv6 address ranges in CIDR format (eg. 192.168.1.0/24)." msgstr "" -#: arrays.php:532 +#: arrays.php:535 #, fuzzy msgid "Dest Ports" msgstr "目的通訊埠" -#: arrays.php:533 +#: arrays.php:536 msgid "Filter on the select Destination Ports for in the Filter. This can be a comma delimited list of Destimation Ports." msgstr "" -#: arrays.php:540 +#: arrays.php:543 #, fuzzy msgid "Dest Interface" msgstr "Dest接口" -#: arrays.php:541 +#: arrays.php:544 msgid "Filter on the select Destination Interface for in the Filter. This can be a comma delimited list of Destimation Interfaces." msgstr "" -#: arrays.php:548 functions.php:1944 +#: arrays.php:551 functions.php:2115 #, fuzzy msgid "Dest AS" msgstr "Dest AS" -#: arrays.php:549 +#: arrays.php:552 msgid "Filter on the select Destination AS for in the Filter. This can be a comma delimited list of Destimation AS's" msgstr "" @@ -644,34 +649,34 @@ msgstr "設備[新]" msgid "FlowView Listeners" msgstr "FlowView監聽器" -#: flowview_devices.php:285 flowview_filters.php:223 flowview_schedules.php:406 +#: flowview_devices.php:285 flowview_filters.php:230 flowview_schedules.php:413 #, fuzzy msgid "Search" msgstr "搜尋" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #: functions.php:426 #, fuzzy msgid "Go" msgstr "送出" -#: flowview_devices.php:291 flowview_filters.php:244 flowview_schedules.php:427 +#: flowview_devices.php:291 flowview_filters.php:251 flowview_schedules.php:434 #, fuzzy msgid "Set/Refresh Filters" msgstr "設置/刷新過濾器" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #: functions.php:427 #, fuzzy msgid "Clear" msgstr "清除" -#: flowview_devices.php:294 flowview_filters.php:247 flowview_schedules.php:430 +#: flowview_devices.php:294 flowview_filters.php:254 flowview_schedules.php:437 #, fuzzy msgid "Clear Filters" msgstr "清除過濾器" -#: flowview_devices.php:328 setup.php:145 setup.php:186 +#: flowview_devices.php:328 setup.php:148 setup.php:195 #, fuzzy msgid "Listeners" msgstr "成員" @@ -750,34 +755,38 @@ msgstr "單擊“繼續”以啟用以下計劃。" msgid "You must select at least one Filter." msgstr "您必須至少選擇一個設備。" -#: flowview_filters.php:215 +#: flowview_filters.php:218 #, fuzzy msgid "FlowView Filters" msgstr "流量過濾器" -#: flowview_filters.php:229 flowview_filters.php:310 setup.php:144 -#: setup.php:242 +#: flowview_filters.php:220 +msgid "FlowView Filters [ Add Devices before Filters ]" +msgstr "" + +#: flowview_filters.php:236 flowview_filters.php:350 setup.php:149 +#: setup.php:251 #, fuzzy msgid "Filters" msgstr "過濾器" -#: flowview_filters.php:233 flowview_schedules.php:416 +#: flowview_filters.php:240 flowview_schedules.php:423 #, fuzzy msgid "Default" msgstr "預設" -#: flowview_filters.php:320 flowview_schedules.php:70 -#: flowview_schedules.php:503 +#: flowview_filters.php:319 flowview_schedules.php:70 +#: flowview_schedules.php:506 #, fuzzy msgid "Filter Name" msgstr "過濾條件名稱" -#: flowview_filters.php:335 +#: flowview_filters.php:334 #, fuzzy msgid "ID" msgstr "IDPR" -#: flowview_filters.php:345 +#: flowview_filters.php:344 #, fuzzy msgid "Resolution" msgstr "主機名解析" @@ -828,7 +837,7 @@ msgstr "新時間表" msgid "Enter a Report Title for the FlowView Schedule." msgstr "輸入FlowView計劃的報告標題。" -#: flowview_schedules.php:62 flowview_schedules.php:508 +#: flowview_schedules.php:62 flowview_schedules.php:526 #, fuzzy msgid "Enabled" msgstr "啟用" @@ -903,18 +912,22 @@ msgstr "報告:[編輯:%s]" msgid "Report: [new]" msgstr "報告:[新]" -#: flowview_schedules.php:331 functions.php:559 +#: flowview_schedules.php:331 functions.php:563 #, fuzzy msgid "Start Date Selector" msgstr "開始日期選擇器" -#: flowview_schedules.php:398 +#: flowview_schedules.php:401 #, fuzzy msgid "FlowView Schedules" msgstr "FlowView計劃" -#: flowview_schedules.php:412 flowview_schedules.php:493 setup.php:146 -#: setup.php:214 +#: flowview_schedules.php:403 +msgid "FlowView Schedules [ Add Devices before Schedules ]" +msgstr "" + +#: flowview_schedules.php:419 flowview_schedules.php:531 setup.php:150 +#: setup.php:223 #, fuzzy msgid "Schedules" msgstr "排程" @@ -924,22 +937,22 @@ msgstr "排程" msgid "Schedule Title" msgstr "計畫標題" -#: flowview_schedules.php:504 +#: flowview_schedules.php:510 #, fuzzy msgid "Interval" msgstr "間隔" -#: flowview_schedules.php:505 +#: flowview_schedules.php:514 #, fuzzy msgid "Start Date" msgstr "開始日期" -#: flowview_schedules.php:506 +#: flowview_schedules.php:518 #, fuzzy msgid "Next Send" msgstr "下一步發送" -#: flowview_schedules.php:507 +#: flowview_schedules.php:522 #, fuzzy msgid "Email" msgstr "電子郵件" @@ -959,25 +972,20 @@ msgstr "報告:[編輯:%s]" msgid "Filter: [new]" msgstr "報告:[新]" -#: functions.php:361 +#: functions.php:363 msgid "Undefined Filter [ Select Filter to get Details ]" msgstr "" -#: functions.php:371 +#: functions.php:373 #, php-format msgid "Statistical Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:373 +#: functions.php:375 #, php-format msgid "Printed Report: %s [ Including overrides as specififed below ]" msgstr "" -#: functions.php:377 -#, fuzzy -msgid "Select a Filter to display data" -msgstr "打印報告" - #: functions.php:393 #, fuzzy msgid "Select a Filter" @@ -1077,338 +1085,354 @@ msgstr "打印報告" msgid "Lines" msgstr "" -#: functions.php:520 +#: functions.php:524 msgid "Octets" msgstr "" -#: functions.php:538 +#: functions.php:542 msgid "Timespan" msgstr "" -#: functions.php:547 +#: functions.php:551 #, fuzzy msgid "Custom" msgstr "自訂" -#: functions.php:553 +#: functions.php:557 msgid "From" msgstr "" -#: functions.php:562 +#: functions.php:566 msgid "To" msgstr "" -#: functions.php:568 +#: functions.php:572 #, fuzzy msgid "End Date Selector" msgstr "結束日期選擇器" -#: functions.php:571 +#: functions.php:575 msgid "Shift Time Backward" msgstr "" -#: functions.php:574 +#: functions.php:578 msgid "Define Shifting Interval" msgstr "" -#: functions.php:587 +#: functions.php:591 msgid "Shift Time Forward" msgstr "" -#: functions.php:594 +#: functions.php:598 #, fuzzy msgid "Show/Hide" msgstr "顯示/隱藏" -#: functions.php:598 +#: functions.php:602 #, fuzzy msgid "Table" msgstr "表格" -#: functions.php:602 +#: functions.php:606 #, fuzzy msgid "Bytes Bar" msgstr "Bytes Bar" -#: functions.php:606 +#: functions.php:610 #, fuzzy msgid "Packets Bar" msgstr "數據包吧" -#: functions.php:610 +#: functions.php:614 #, fuzzy msgid "Flows Bar" msgstr "流動吧" -#: functions.php:1088 +#: functions.php:1126 #, php-format msgid "Client/Private (%s)" msgstr "" -#: functions.php:1090 +#: functions.php:1128 msgid "icmp (0)" msgstr "" -#: functions.php:1101 +#: functions.php:1139 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "未知" -#: functions.php:1121 +#: functions.php:1170 #, fuzzy msgid "Cacti Flowview" msgstr "Cacti Flowview" -#: functions.php:1129 -#, fuzzy -msgid "Netflow - %" +#: functions.php:1176 +#, fuzzy, php-format +msgid "Netflow - %s" msgstr "淨流量 - %" -#: functions.php:1238 -#, fuzzy -msgid "New Flow" -msgstr "新流程" +#: functions.php:1340 +#, php-format +msgid "Subnet Filter: %s is not a value CIDR format" +msgstr "" + +#: functions.php:1688 functions.php:1689 functions.php:1690 functions.php:1691 +#: functions.php:1692 functions.php:1693 functions.php:1694 functions.php:1695 +#: functions.php:1696 functions.php:1697 functions.php:1698 functions.php:1699 +#: functions.php:1700 functions.php:1701 functions.php:1702 functions.php:1703 +#: functions.php:1704 functions.php:1705 functions.php:1706 functions.php:1707 +#: functions.php:1708 functions.php:1709 functions.php:1710 functions.php:1711 +#: functions.php:1712 functions.php:1713 +#, fuzzy, php-format +msgid "%d - %d Bytes" +msgstr "%s字節" + +#: functions.php:1714 +#, fuzzy, php-format +msgid "> %d Bytes" +msgstr "%s字節" -#: functions.php:1888 +#: functions.php:2059 #, fuzzy msgid "Source DNS" msgstr "資料來源" -#: functions.php:1892 +#: functions.php:2063 #, fuzzy msgid "Source Root DNS" msgstr "資料來源" -#: functions.php:1896 +#: functions.php:2067 #, fuzzy msgid "Dest DNS" msgstr "Dest AS" -#: functions.php:1900 +#: functions.php:2071 #, fuzzy msgid "Dest Root DNS" msgstr "目的通訊埠" -#: functions.php:1904 +#: functions.php:2075 #, fuzzy msgid "DNS" msgstr "DSR" -#: functions.php:1908 +#: functions.php:2079 msgid "Root DNS" msgstr "" -#: functions.php:1928 +#: functions.php:2099 #, fuzzy msgid "Dest Port" msgstr "目的通訊埠" -#: functions.php:1936 +#: functions.php:2107 #, fuzzy msgid "Dest IF" msgstr "Dest IF" -#: functions.php:1952 +#: functions.php:2123 #, fuzzy msgid "Dest Prefix" msgstr "Dest前綴" -#: functions.php:1960 +#: functions.php:2131 msgid "Type of Service" msgstr "" -#: functions.php:1979 +#: functions.php:2150 #, fuzzy msgid "Bytes/Packet" msgstr "封包" -#: functions.php:2109 +#: functions.php:2335 msgid "-- unresolved --" msgstr "" -#: functions.php:2215 +#: functions.php:2441 #, php-format msgid "Boolean: %s, Numeric: %s, Hex: %s" msgstr "" -#: functions.php:2226 +#: functions.php:2452 msgid "Low Delay" msgstr "" -#: functions.php:2227 +#: functions.php:2453 msgid "Throughput" msgstr "" -#: functions.php:2228 +#: functions.php:2454 msgid "Reliability" msgstr "" -#: functions.php:2229 +#: functions.php:2455 msgid "Mincost" msgstr "" -#: functions.php:2233 +#: functions.php:2459 msgid "Net Control" msgstr "" -#: functions.php:2234 +#: functions.php:2460 msgid "Internet Control" msgstr "" -#: functions.php:2235 +#: functions.php:2461 msgid "Critic ECP" msgstr "" -#: functions.php:2236 +#: functions.php:2462 msgid "Flash Override" msgstr "" -#: functions.php:2237 +#: functions.php:2463 msgid "Flash" msgstr "" -#: functions.php:2238 +#: functions.php:2464 msgid "Immediate" msgstr "" -#: functions.php:2239 +#: functions.php:2465 msgid "Priority" msgstr "" -#: functions.php:2240 +#: functions.php:2466 msgid "Routine" msgstr "" -#: functions.php:2280 +#: functions.php:2506 #, fuzzy msgid "Summary Statistics" msgstr "摘要統計" -#: functions.php:2291 +#: functions.php:2517 #, fuzzy, php-format msgid "IP Packet Size Distribution (%%)" msgstr "IP數據包大小分佈(%)" -#: functions.php:2296 +#: functions.php:2522 #, fuzzy, php-format msgid "Packets per Flow Distribution (%%)" msgstr "每個流量分配的數據包(%)" -#: functions.php:2301 +#: functions.php:2527 #, fuzzy, php-format msgid "Octets per Flow Distribution (%%)" msgstr "每流量分佈的八位字節(%)" -#: functions.php:2306 +#: functions.php:2532 #, fuzzy, php-format msgid "Flow Time Distribution (%%)" msgstr "流動時間分佈(%)" -#: functions.php:2489 +#: functions.php:2715 #, fuzzy msgid "You must select a Statistics Report or Printed Report!" msgstr "您必須選擇統計報告或打印報告!" -#: functions.php:2493 +#: functions.php:2719 #, fuzzy msgid "You must select only a Statistics Report or a Printed Report (not both)!" msgstr "您必須只選擇統計報告或打印報告(不是兩者)!" -#: functions.php:2497 +#: functions.php:2723 #, fuzzy msgid "Invalid dates, End Date/Time is earlier than Start Date/Time!" msgstr "日期無效,結束日期/時間早於開始日期/時間!" -#: functions.php:2508 functions.php:2513 +#: functions.php:2734 functions.php:2739 #, fuzzy msgid "Invalid IP for the Source Address!
(Must be in the form of '192.168.0.1')" msgstr "源地址的IP無效!
(必須採用'192.168.0.1'的形式)" -#: functions.php:2520 functions.php:2524 functions.php:2528 +#: functions.php:2746 functions.php:2750 functions.php:2754 #, fuzzy msgid "Invalid subnet for the Source Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "源地址的子網無效!
(必須採用'192.168.0.1/255.255.255.0'或'192.168.0.1/24'的形式)" -#: functions.php:2542 functions.php:2546 +#: functions.php:2768 functions.php:2772 #, fuzzy msgid "Invalid IP for the Destination Address!
(Must be in the form of '192.168.0.1')" msgstr "目標地址的IP無效!
(必須採用'192.168.0.1'的形式)" -#: functions.php:2552 functions.php:2556 functions.php:2560 +#: functions.php:2778 functions.php:2782 functions.php:2786 #, fuzzy msgid "Invalid subnet for the Destination Address!
(Must be in the form of '192.168.0.1/255.255.255.0' or '192.168.0.1/24')" msgstr "目標地址的子網無效!
(必須採用'192.168.0.1/255.255.255.0'或'192.168.0.1/24'的形式)" -#: functions.php:2578 +#: functions.php:2804 #, fuzzy msgid "Invalid value for Source Interface!" msgstr "源接口的值無效!" -#: functions.php:2594 +#: functions.php:2820 #, fuzzy msgid "Invalid value for Source Port! (0 - 65535)" msgstr "源端口的值無效! (0 - 65535)" -#: functions.php:2610 +#: functions.php:2836 #, fuzzy msgid "Invalid value for Source AS! (0 - 65535)" msgstr "源AS的值無效! (0 - 65535)" -#: functions.php:2626 +#: functions.php:2852 #, fuzzy msgid "Invalid value for Destination Interface!" msgstr "目標接口的值無效!" -#: functions.php:2642 +#: functions.php:2868 #, fuzzy msgid "Invalid value for Destination Port! (0 - 65535)" msgstr "目標端口的值無效! (0 - 65535)" -#: functions.php:2658 +#: functions.php:2884 #, fuzzy msgid "Invalid value for Destination AS! (0 - 65535)" msgstr "目標AS的值無效! (0 - 65535)" -#: functions.php:2674 +#: functions.php:2900 #, fuzzy msgid "Invalid value for Protocol! (1 - 255)" msgstr "協議的值無效! (1 - 255)" -#: functions.php:2686 +#: functions.php:2912 #, fuzzy msgid "Invalid value for TCP Flag! (ex: 0x1b or 0x1b/SA or SA/SA)" msgstr "TCP標誌的值無效! (例如:0x1b或0x1b / SA或SA / SA)" -#: functions.php:2695 +#: functions.php:2921 #, fuzzy msgid "Invalid value for Cutoff Octets!" msgstr "Cutoff Octets的值無效!" -#: functions.php:2702 +#: functions.php:2928 #, fuzzy msgid "Invalid value for Cutoff Lines!" msgstr "截止線的值無效!" -#: functions.php:2709 +#: functions.php:2935 #, fuzzy msgid "Invalid value for Sort Field!" msgstr "排序字段的值無效!" -#: functions.php:2736 +#: functions.php:2962 #, fuzzy, php-format msgid "FlowView Chart for %s Type is %s" msgstr "%s類型的FlowView圖表是%s" -#: functions.php:3039 +#: functions.php:3257 #, fuzzy msgid "Total Flows" msgstr "最大流量:" -#: functions.php:3044 +#: functions.php:3262 msgid "Bytes Exchanged" msgstr "" -#: functions.php:3048 +#: functions.php:3266 #, fuzzy msgid "Packets Examined" msgstr "數據包吧" @@ -1423,721 +1447,733 @@ msgstr "插件 - >流程查看器" msgid "Plugin -> Flow Admin" msgstr "插件 - > Flow Admin" -#: setup.php:137 +#: setup.php:141 #, fuzzy msgid "The Filter has been Deleted" msgstr "過濾器已被刪除" -#: setup.php:138 +#: setup.php:142 #, fuzzy msgid "The Filter has been Updated" msgstr "過濾器已更新" -#: setup.php:143 +#: setup.php:147 msgid "Import/Export" msgstr "" -#: setup.php:144 setup.php:145 setup.php:146 setup.php:151 setup.php:277 -#: setup.php:279 +#: setup.php:148 setup.php:149 setup.php:150 setup.php:155 setup.php:286 +#: setup.php:288 #, fuzzy msgid "FlowView" msgstr "FlowView" -#: setup.php:158 setup.php:179 setup.php:301 +#: setup.php:158 +msgid "Normal User" +msgstr "" + +#: setup.php:159 +msgid "System Administration" +msgstr "" + +#: setup.php:167 setup.php:188 setup.php:310 #, fuzzy msgid "Flow Viewer" msgstr "流查看器" -#: setup.php:165 +#: setup.php:174 #, fuzzy msgid "(view)" msgstr "查看" -#: setup.php:172 setup.php:200 setup.php:228 setup.php:256 +#: setup.php:181 setup.php:209 setup.php:237 setup.php:265 #, fuzzy msgid "(save)" msgstr "儲存" -#: setup.php:193 setup.php:221 setup.php:249 +#: setup.php:202 setup.php:230 setup.php:258 #, fuzzy msgid "(edit)" msgstr "(編輯)" -#: setup.php:207 setup.php:235 setup.php:263 +#: setup.php:216 setup.php:244 setup.php:272 #, fuzzy msgid "(actions)" msgstr "動作" -#: setup.php:305 +#: setup.php:314 msgid "Data Retention Policy" msgstr "" -#: setup.php:306 +#: setup.php:315 msgid "The amount of time Cacti will maintain the partitioned Flow tables." msgstr "" -#: setup.php:309 +#: setup.php:318 #, fuzzy, php-format msgid "%d Week" msgstr "%d週" -#: setup.php:310 setup.php:311 +#: setup.php:319 setup.php:320 #, fuzzy, php-format msgid "%d Weeks" msgstr "%d週" -#: setup.php:312 +#: setup.php:321 #, fuzzy, php-format msgid "%d Month" msgstr "%d月" -#: setup.php:313 setup.php:314 setup.php:315 setup.php:316 +#: setup.php:322 setup.php:323 setup.php:324 setup.php:325 #, fuzzy, php-format msgid "%d Months" msgstr "%d個月" -#: setup.php:317 +#: setup.php:326 #, fuzzy, php-format msgid "%d Year" msgstr "%d年" -#: setup.php:322 +#: setup.php:331 msgid "Database Partitioning Scheme" msgstr "" -#: setup.php:323 +#: setup.php:332 msgid "Depending on the number of flows per minute, you may require more tables per day." msgstr "" -#: setup.php:326 +#: setup.php:335 msgid "Daily" msgstr "" -#: setup.php:327 +#: setup.php:336 msgid "Hourly" msgstr "" -#: setup.php:333 +#: setup.php:342 #, fuzzy msgid "Misc" msgstr "雜項" #, fuzzy -#~ msgid "A comma delimited list of domains names to strip from the domain." -#~ msgstr "以逗號分隔的域名列表,用於從域中刪除。" +#~ msgid "TCP" +#~ msgstr "TCP" #, fuzzy -#~ msgid "Strip Domain Names" -#~ msgstr "剝離域名" +#~ msgid "UDP" +#~ msgstr "UDP" #, fuzzy -#~ msgid "This is the DNS Server used to resolve names." -#~ msgstr "這是用於解析名稱的DNS服務器。" +#~ msgid "ICMP" +#~ msgstr "ICMP" #, fuzzy -#~ msgid "Alternate DNS Server" -#~ msgstr "備用DNS服務器" +#~ msgid "IGMP" +#~ msgstr "IGMP" #, fuzzy -#~ msgid "Don't Resolve DNS" -#~ msgstr "不要解析DNS" +#~ msgid "GGP" +#~ msgstr "GGP" #, fuzzy -#~ msgid "Use DNS Server Below" -#~ msgstr "使用下面的DNS服務器" +#~ msgid "IPENCAP" +#~ msgstr "ipencap則" #, fuzzy -#~ msgid "Use Local Server" -#~ msgstr "使用本地服務器" +#~ msgid "ST" +#~ msgstr "ST" #, fuzzy -#~ msgid "The method by which you wish to resolve hostnames." -#~ msgstr "您希望解析主機名的方法。" +#~ msgid "CBT" +#~ msgstr "CBT" #, fuzzy -#~ msgid "This is the path to base the path of your flow folder structure." -#~ msgstr "這是基於流文件夾結構路徑的路徑。" +#~ msgid "EGP" +#~ msgstr "EGP" #, fuzzy -#~ msgid "Flows Directory" -#~ msgstr "流程目錄" +#~ msgid "IGP" +#~ msgstr "IGP" #, fuzzy -#~ msgid "This is the path to a temporary directory to do work." -#~ msgstr "這是臨時目錄的工作路徑。" +#~ msgid "BBN-RCC-MON" +#~ msgstr "BBN-RCC-MON" #, fuzzy -#~ msgid "Flow Tools Work Directory" -#~ msgstr "Flow Tools工作目錄" +#~ msgid "NVP-II" +#~ msgstr "NVP-II" #, fuzzy -#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." -#~ msgstr "flow-cat,flow-filter和flow-stat二進製文件的路徑。" +#~ msgid "PUP" +#~ msgstr "小狗" #, fuzzy -#~ msgid "Flow Tools Binary Path" -#~ msgstr "Flow Tools二進制路徑" +#~ msgid "ARGUS" +#~ msgstr "ARGUS" #, fuzzy -#~ msgid "Manage Listeners" -#~ msgstr "管理聽眾" +#~ msgid "EMCON" +#~ msgstr "EMCON" #, fuzzy -#~ msgid "No Devices" -#~ msgstr "設備" +#~ msgid "XNET" +#~ msgstr "XNET" #, fuzzy -#~ msgid "Expire" -#~ msgstr "訂閱的課程 %s 不久將到期" +#~ msgid "CHAOS" +#~ msgstr "混沌" #, fuzzy -#~ msgid "Compression" -#~ msgstr "壓縮" +#~ msgid "MUX" +#~ msgstr "MUX" #, fuzzy -#~ msgid "Version" -#~ msgstr "版本" +#~ msgid "DCN-MEAS" +#~ msgstr "DCN-MEAS" #, fuzzy -#~ msgid "How long to keep your flow files." -#~ msgstr "保留流文件多長時間。" +#~ msgid "HMP" +#~ msgstr "HMP" #, fuzzy -#~ msgid "Expiration" -#~ msgstr "到期日" +#~ msgid "PRM" +#~ msgstr "PRM" #, fuzzy -#~ msgid "How often to create a new Flow File." -#~ msgstr "多久創建一個新的Flow文件。" +#~ msgid "XNS-IDP" +#~ msgstr "XNS-IDP" #, fuzzy -#~ msgid "Rotation" -#~ msgstr "旋轉" +#~ msgid "TRUNK-1" +#~ msgstr "TRUNK-1" #, fuzzy -#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." -#~ msgstr "流文件的壓縮級別。更高的壓縮可以節省空間,但使用更多的CPU來存儲和檢索結果。" +#~ msgid "TRUNK-2" +#~ msgstr "TRUNK-2" #, fuzzy -#~ msgid "Compression Level" -#~ msgstr "壓縮等級" +#~ msgid "LEAF-1" +#~ msgstr "LEAF-1" #, fuzzy -#~ msgid "NetFlow Protocol version used by the device." -#~ msgstr "設備使用的NetFlow協議版本。" +#~ msgid "LEAF-2" +#~ msgstr "LEAF-2" #, fuzzy -#~ msgid "NetFlow Version" -#~ msgstr "NetFlow版本" +#~ msgid "RDP" +#~ msgstr "RDP" #, fuzzy -#~ msgid "Directory Structure that will be used for the flows for this device." -#~ msgstr "目錄將用於此設備的流的結構。" +#~ msgid "IRTP" +#~ msgstr "IRTP" #, fuzzy -#~ msgid "Nesting" -#~ msgstr "嵌套" +#~ msgid "ISO-TP4" +#~ msgstr "ISO-TP4" #, fuzzy -#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." -#~ msgstr "此設備流所在的目錄。此目錄必須位於Flow Directory路徑中。不要把完整的路徑放在這裡。此外,如果您更改路徑,則必須重新保存要使用它的所有預定義文件管理器設置。" +#~ msgid "NETBLT" +#~ msgstr "NETBLT" #, fuzzy -#~ msgid "Directory" -#~ msgstr "目錄" +#~ msgid "MFE-NSP" +#~ msgstr "MFE-NSP" #, fuzzy -#~ msgid "9 (Highest)" -#~ msgstr "9(最高)" +#~ msgid "MERIT-INP" +#~ msgstr "MERIT-INP" #, fuzzy -#~ msgid "0 (Disabled)" -#~ msgstr "0(已禁用)" +#~ msgid "DCCP" +#~ msgstr "DCCP" #, fuzzy -#~ msgid "Flow-Tools tagged version 5" -#~ msgstr "Flow-Tools已標記為版本5" +#~ msgid "3PC" +#~ msgstr "3PC" #, fuzzy -#~ msgid "NetFlow ToS Prefix Port Aggregation" -#~ msgstr "NetFlow ToS前綴端口聚合" +#~ msgid "IDPR" +#~ msgstr "IDPR" #, fuzzy -#~ msgid "NetFlow ToS Prefix Aggregation" -#~ msgstr "NetFlow ToS前綴聚合" +#~ msgid "XTP" +#~ msgstr "XTP" #, fuzzy -#~ msgid "NetFlow ToS Destination Prefix Aggregation" -#~ msgstr "NetFlow ToS目標前綴聚合" +#~ msgid "DDP" +#~ msgstr "DDP" #, fuzzy -#~ msgid "NetFlow ToS Source Prefix Aggregation" -#~ msgstr "NetFlow ToS源前綴聚合" +#~ msgid "IDPR-CMTP" +#~ msgstr "IDPR-CMTP" #, fuzzy -#~ msgid "NetFlow ToS Proto Port Aggregation" -#~ msgstr "NetFlow ToS原始端口聚合" +#~ msgid "TP++" +#~ msgstr "TP ++" #, fuzzy -#~ msgid "NetFlow ToS AS Aggregation" -#~ msgstr "NetFlow ToS AS聚合" +#~ msgid "IL" +#~ msgstr "IL" #, fuzzy -#~ msgid "NetFlow Full Flow" -#~ msgstr "NetFlow Full Flow" +#~ msgid "IPv6" +#~ msgstr "IPv6的" #, fuzzy -#~ msgid "NetFlow Source Destination" -#~ msgstr "NetFlow源目的地" +#~ msgid "SDRP" +#~ msgstr "SDRP" #, fuzzy -#~ msgid "NetFlow Destination" -#~ msgstr "NetFlow目的地" +#~ msgid "IPv6-Route" +#~ msgstr "IPv6的路由" #, fuzzy -#~ msgid "NetFlow Prefix Aggregation" -#~ msgstr "NetFlow前綴聚合" +#~ msgid "IPv6-Frag" +#~ msgstr "IPv6的破片" #, fuzzy -#~ msgid "NetFlow Destination Prefix Aggregation" -#~ msgstr "NetFlow目標前綴聚合" +#~ msgid "IDRP" +#~ msgstr "IDRP" #, fuzzy -#~ msgid "NetFlow Source Prefix Aggregation" -#~ msgstr "NetFlow源前綴聚合" +#~ msgid "RSVP" +#~ msgstr "活動報名" #, fuzzy -#~ msgid "NetFlow Proto Port Aggregation" -#~ msgstr "NetFlow原始端口聚合" +#~ msgid "GRE" +#~ msgstr "GRE" #, fuzzy -#~ msgid "NetFlow AS Aggregation" -#~ msgstr "NetFlow AS聚合" +#~ msgid "IPSEC-ESP" +#~ msgstr "IPSEC-ESP" #, fuzzy -#~ msgid "NetFlow version 7" -#~ msgstr "NetFlow版本7" +#~ msgid "IPSEC-AH" +#~ msgstr "IPSEC-AH" #, fuzzy -#~ msgid "NetFlow version 6" -#~ msgstr "NetFlow版本6" +#~ msgid "IPv6-ICMP" +#~ msgstr "IPv6的ICMP" #, fuzzy -#~ msgid "NetFlow version 5" -#~ msgstr "NetFlow版本5" +#~ msgid "IPv6-NoNxt" +#~ msgstr "IPv6的NoNxt" #, fuzzy -#~ msgid "NetFlow version 1" -#~ msgstr "NetFlow版本1" +#~ msgid "IPv6-Opts" +#~ msgstr "IPv6的OPTS" #, fuzzy -#~ msgid "%d Minutes" -#~ msgstr "%d 分鐘" +#~ msgid "RSPF" +#~ msgstr "RSPF" #, fuzzy -#~ msgid "%d Minute" -#~ msgstr "%d分鐘" +#~ msgid "VMTP" +#~ msgstr "VMTP" #, fuzzy -#~ msgid "%d Days" -#~ msgstr "%d 天" +#~ msgid "EIGRP" +#~ msgstr "EIGRP" #, fuzzy -#~ msgid "Include if:" -#~ msgstr "包括:" +#~ msgid "OSPF" +#~ msgstr "OSPF" #, fuzzy -#~ msgid "Report Parameters" -#~ msgstr "報告參數" +#~ msgid "MTP" +#~ msgstr "MTP" #, fuzzy -#~ msgid "Note:" -#~ msgstr "備註:" +#~ msgid "IPIP" +#~ msgstr "IPIP" #, fuzzy -#~ msgid "Dest Port(s)" -#~ msgstr "目的港(s)" +#~ msgid "ENCAP" +#~ msgstr "ENCAP" #, fuzzy -#~ msgid "(e.g., -0x0b/0x0F)" -#~ msgstr "(例如,-0x0b / 0x0F)" +#~ msgid "Src IP" +#~ msgstr "來源 IP" #, fuzzy -#~ msgid "Flow Filter Constraints" -#~ msgstr "流量過濾器約束" +#~ msgid "Src/Dest IP" +#~ msgstr "Src / Dest IP" #, fuzzy -#~ msgid "Select One" -#~ msgstr "-選擇一個" +#~ msgid "Src AS" +#~ msgstr "Src AS" #, fuzzy -#~ msgid "Entirely in Specified Time Span" -#~ msgstr "完全在指定的時間範圍內" +#~ msgid "Src Prefix" +#~ msgstr "Src前綴" #, fuzzy -#~ msgid "Start Time in Specified Time Span" -#~ msgstr "以指定時間跨度開始時間" +#~ msgid "Src IF" +#~ msgstr "Src IF" #, fuzzy -#~ msgid "End Time in Specified Time Span" -#~ msgstr "指定時間跨度的結束時間" +#~ msgid "Src Port" +#~ msgstr "Src港口" #, fuzzy -#~ msgid "Any Part in Specified Time Span" -#~ msgstr "指定時間跨度中的任何部分" +#~ msgid "End Date" +#~ msgstr "結束日期" #, fuzzy -#~ msgid "Full (Catalyst)" -#~ msgstr "全(催化劑)" +#~ msgid "Filter Type" +#~ msgstr "過濾條件名稱" #, fuzzy -#~ msgid "Prefix Aggregation" -#~ msgstr "前綴聚合" +#~ msgid "View" +#~ msgstr "查看" #, fuzzy -#~ msgid "Destination Prefix Aggregation" -#~ msgstr "目的地前綴聚合" +#~ msgid "Defaults" +#~ msgstr "當前課程 (預設為全部)" #, fuzzy -#~ msgid "Source Prefix Aggregation" -#~ msgstr "源前綴聚合" +#~ msgid "Save As" +#~ msgstr "另存為" #, fuzzy -#~ msgid "Protocol Port Aggregation" -#~ msgstr "協議端口聚合" +#~ msgid "Filter Data" +#~ msgstr "過濾條件名稱" #, fuzzy -#~ msgid "AS Aggregation" -#~ msgstr "AS聚合" +#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" +#~ msgstr "在上面的字段中允許使用逗號分隔的多個字段條目。減號( - )將取消一個條目(例如,端口為-80,將表示任何端口,但為80)" #, fuzzy -#~ msgid "1 Line with Tags" -#~ msgstr "1行標籤" +#~ msgid "New Query" +#~ msgstr "新查詢" #, fuzzy -#~ msgid "Prefix" -#~ msgstr "標題" +#~ msgid "Update" +#~ msgstr "更新" #, fuzzy -#~ msgid "AS" -#~ msgstr "AS" +#~ msgid "Filter Saved" +#~ msgstr "過濾已保存" #, fuzzy -#~ msgid "Interface" -#~ msgstr "用戶介面" +#~ msgid "Filter Settings Saved" +#~ msgstr "過濾器設置已保存" + +#, fuzzy +#~ msgid "Filter Updated" +#~ msgstr "過濾器已更新" #, fuzzy #~ msgid "IP" #~ msgstr "IP" #, fuzzy -#~ msgid "Filter Updated" -#~ msgstr "過濾器已更新" +#~ msgid "Interface" +#~ msgstr "用戶介面" #, fuzzy -#~ msgid "Filter Settings Saved" -#~ msgstr "過濾器設置已保存" +#~ msgid "AS" +#~ msgstr "AS" #, fuzzy -#~ msgid "Filter Saved" -#~ msgstr "過濾已保存" +#~ msgid "Prefix" +#~ msgstr "標題" #, fuzzy -#~ msgid "Update" -#~ msgstr "更新" +#~ msgid "1 Line with Tags" +#~ msgstr "1行標籤" #, fuzzy -#~ msgid "New Query" -#~ msgstr "新查詢" +#~ msgid "AS Aggregation" +#~ msgstr "AS聚合" #, fuzzy -#~ msgid "Multiple field entries, separated by commas, are permitted in the fields above. A minus sign (-) will negate an entry (e.g. -80 for Port, would mean any Port but 80)" -#~ msgstr "在上面的字段中允許使用逗號分隔的多個字段條目。減號( - )將取消一個條目(例如,端口為-80,將表示任何端口,但為80)" +#~ msgid "Protocol Port Aggregation" +#~ msgstr "協議端口聚合" #, fuzzy -#~ msgid "Filter Data" -#~ msgstr "過濾條件名稱" +#~ msgid "Source Prefix Aggregation" +#~ msgstr "源前綴聚合" #, fuzzy -#~ msgid "Save As" -#~ msgstr "另存為" +#~ msgid "Destination Prefix Aggregation" +#~ msgstr "目的地前綴聚合" #, fuzzy -#~ msgid "Defaults" -#~ msgstr "當前課程 (預設為全部)" +#~ msgid "Prefix Aggregation" +#~ msgstr "前綴聚合" #, fuzzy -#~ msgid "View" -#~ msgstr "查看" +#~ msgid "Full (Catalyst)" +#~ msgstr "全(催化劑)" #, fuzzy -#~ msgid "Filter Type" -#~ msgstr "過濾條件名稱" +#~ msgid "Any Part in Specified Time Span" +#~ msgstr "指定時間跨度中的任何部分" #, fuzzy -#~ msgid "End Date" -#~ msgstr "結束日期" +#~ msgid "End Time in Specified Time Span" +#~ msgstr "指定時間跨度的結束時間" #, fuzzy -#~ msgid "Src Port" -#~ msgstr "Src港口" +#~ msgid "Start Time in Specified Time Span" +#~ msgstr "以指定時間跨度開始時間" #, fuzzy -#~ msgid "Src IF" -#~ msgstr "Src IF" +#~ msgid "Entirely in Specified Time Span" +#~ msgstr "完全在指定的時間範圍內" #, fuzzy -#~ msgid "Src Prefix" -#~ msgstr "Src前綴" +#~ msgid "Select One" +#~ msgstr "-選擇一個" #, fuzzy -#~ msgid "Src AS" -#~ msgstr "Src AS" +#~ msgid "Flow Filter Constraints" +#~ msgstr "流量過濾器約束" #, fuzzy -#~ msgid "Src/Dest IP" -#~ msgstr "Src / Dest IP" +#~ msgid "(e.g., -0x0b/0x0F)" +#~ msgstr "(例如,-0x0b / 0x0F)" #, fuzzy -#~ msgid "Src IP" -#~ msgstr "來源 IP" +#~ msgid "Dest Port(s)" +#~ msgstr "目的港(s)" #, fuzzy -#~ msgid "ENCAP" -#~ msgstr "ENCAP" +#~ msgid "Note:" +#~ msgstr "備註:" #, fuzzy -#~ msgid "IPIP" -#~ msgstr "IPIP" +#~ msgid "Report Parameters" +#~ msgstr "報告參數" #, fuzzy -#~ msgid "MTP" -#~ msgstr "MTP" +#~ msgid "Include if:" +#~ msgstr "包括:" #, fuzzy -#~ msgid "OSPF" -#~ msgstr "OSPF" +#~ msgid "%d Days" +#~ msgstr "%d 天" #, fuzzy -#~ msgid "EIGRP" -#~ msgstr "EIGRP" +#~ msgid "%d Minute" +#~ msgstr "%d分鐘" #, fuzzy -#~ msgid "VMTP" -#~ msgstr "VMTP" +#~ msgid "%d Minutes" +#~ msgstr "%d 分鐘" #, fuzzy -#~ msgid "RSPF" -#~ msgstr "RSPF" +#~ msgid "NetFlow version 1" +#~ msgstr "NetFlow版本1" #, fuzzy -#~ msgid "IPv6-Opts" -#~ msgstr "IPv6的OPTS" +#~ msgid "NetFlow version 5" +#~ msgstr "NetFlow版本5" #, fuzzy -#~ msgid "IPv6-NoNxt" -#~ msgstr "IPv6的NoNxt" +#~ msgid "NetFlow version 6" +#~ msgstr "NetFlow版本6" #, fuzzy -#~ msgid "IPv6-ICMP" -#~ msgstr "IPv6的ICMP" +#~ msgid "NetFlow version 7" +#~ msgstr "NetFlow版本7" #, fuzzy -#~ msgid "IPSEC-AH" -#~ msgstr "IPSEC-AH" +#~ msgid "NetFlow AS Aggregation" +#~ msgstr "NetFlow AS聚合" #, fuzzy -#~ msgid "IPSEC-ESP" -#~ msgstr "IPSEC-ESP" +#~ msgid "NetFlow Proto Port Aggregation" +#~ msgstr "NetFlow原始端口聚合" #, fuzzy -#~ msgid "BNA" -#~ msgstr "BNA" +#~ msgid "NetFlow Source Prefix Aggregation" +#~ msgstr "NetFlow源前綴聚合" #, fuzzy -#~ msgid "GRE" -#~ msgstr "GRE" +#~ msgid "NetFlow Destination Prefix Aggregation" +#~ msgstr "NetFlow目標前綴聚合" #, fuzzy -#~ msgid "RSVP" -#~ msgstr "活動報名" +#~ msgid "NetFlow Prefix Aggregation" +#~ msgstr "NetFlow前綴聚合" #, fuzzy -#~ msgid "IDRP" -#~ msgstr "IDRP" +#~ msgid "NetFlow Destination" +#~ msgstr "NetFlow目的地" #, fuzzy -#~ msgid "IPv6-Frag" -#~ msgstr "IPv6的破片" +#~ msgid "NetFlow Source Destination" +#~ msgstr "NetFlow源目的地" #, fuzzy -#~ msgid "IPv6-Route" -#~ msgstr "IPv6的路由" +#~ msgid "NetFlow Full Flow" +#~ msgstr "NetFlow Full Flow" #, fuzzy -#~ msgid "SDRP" -#~ msgstr "SDRP" +#~ msgid "NetFlow ToS AS Aggregation" +#~ msgstr "NetFlow ToS AS聚合" #, fuzzy -#~ msgid "IPv6" -#~ msgstr "IPv6的" +#~ msgid "NetFlow ToS Proto Port Aggregation" +#~ msgstr "NetFlow ToS原始端口聚合" #, fuzzy -#~ msgid "IL" -#~ msgstr "IL" +#~ msgid "NetFlow ToS Source Prefix Aggregation" +#~ msgstr "NetFlow ToS源前綴聚合" #, fuzzy -#~ msgid "TP++" -#~ msgstr "TP ++" +#~ msgid "NetFlow ToS Destination Prefix Aggregation" +#~ msgstr "NetFlow ToS目標前綴聚合" #, fuzzy -#~ msgid "IDPR-CMTP" -#~ msgstr "IDPR-CMTP" +#~ msgid "NetFlow ToS Prefix Aggregation" +#~ msgstr "NetFlow ToS前綴聚合" #, fuzzy -#~ msgid "DDP" -#~ msgstr "DDP" +#~ msgid "NetFlow ToS Prefix Port Aggregation" +#~ msgstr "NetFlow ToS前綴端口聚合" #, fuzzy -#~ msgid "XTP" -#~ msgstr "XTP" +#~ msgid "Flow-Tools tagged version 5" +#~ msgstr "Flow-Tools已標記為版本5" #, fuzzy -#~ msgid "IDPR" -#~ msgstr "IDPR" +#~ msgid "0 (Disabled)" +#~ msgstr "0(已禁用)" #, fuzzy -#~ msgid "3PC" -#~ msgstr "3PC" +#~ msgid "9 (Highest)" +#~ msgstr "9(最高)" #, fuzzy -#~ msgid "DCCP" -#~ msgstr "DCCP" +#~ msgid "Directory" +#~ msgstr "目錄" #, fuzzy -#~ msgid "MERIT-INP" -#~ msgstr "MERIT-INP" +#~ msgid "Directory that this devices flows are in. This directory must be in the Flow Directory path. Do not put the full path here. Also, not that if you change the path, all the predefined filer setup to to use it will have to be resaved." +#~ msgstr "此設備流所在的目錄。此目錄必須位於Flow Directory路徑中。不要把完整的路徑放在這裡。此外,如果您更改路徑,則必須重新保存要使用它的所有預定義文件管理器設置。" #, fuzzy -#~ msgid "MFE-NSP" -#~ msgstr "MFE-NSP" +#~ msgid "Nesting" +#~ msgstr "嵌套" #, fuzzy -#~ msgid "NETBLT" -#~ msgstr "NETBLT" +#~ msgid "Directory Structure that will be used for the flows for this device." +#~ msgstr "目錄將用於此設備的流的結構。" #, fuzzy -#~ msgid "ISO-TP4" -#~ msgstr "ISO-TP4" +#~ msgid "NetFlow Version" +#~ msgstr "NetFlow版本" #, fuzzy -#~ msgid "IRTP" -#~ msgstr "IRTP" +#~ msgid "NetFlow Protocol version used by the device." +#~ msgstr "設備使用的NetFlow協議版本。" #, fuzzy -#~ msgid "RDP" -#~ msgstr "RDP" +#~ msgid "Compression Level" +#~ msgstr "壓縮等級" #, fuzzy -#~ msgid "LEAF-2" -#~ msgstr "LEAF-2" +#~ msgid "Compression level of flow files. Higher compression saves space but uses more CPU to store and retrieve results." +#~ msgstr "流文件的壓縮級別。更高的壓縮可以節省空間,但使用更多的CPU來存儲和檢索結果。" #, fuzzy -#~ msgid "LEAF-1" -#~ msgstr "LEAF-1" +#~ msgid "Rotation" +#~ msgstr "旋轉" #, fuzzy -#~ msgid "TRUNK-2" -#~ msgstr "TRUNK-2" +#~ msgid "How often to create a new Flow File." +#~ msgstr "多久創建一個新的Flow文件。" #, fuzzy -#~ msgid "TRUNK-1" -#~ msgstr "TRUNK-1" +#~ msgid "Expiration" +#~ msgstr "到期日" #, fuzzy -#~ msgid "XNS-IDP" -#~ msgstr "XNS-IDP" +#~ msgid "How long to keep your flow files." +#~ msgstr "保留流文件多長時間。" #, fuzzy -#~ msgid "PRM" -#~ msgstr "PRM" +#~ msgid "Version" +#~ msgstr "版本" #, fuzzy -#~ msgid "HMP" -#~ msgstr "HMP" +#~ msgid "Compression" +#~ msgstr "壓縮" #, fuzzy -#~ msgid "DCN-MEAS" -#~ msgstr "DCN-MEAS" +#~ msgid "Expire" +#~ msgstr "訂閱的課程 %s 不久將到期" #, fuzzy -#~ msgid "MUX" -#~ msgstr "MUX" +#~ msgid "No Devices" +#~ msgstr "設備" #, fuzzy -#~ msgid "CHAOS" -#~ msgstr "混沌" +#~ msgid "Manage Listeners" +#~ msgstr "管理聽眾" #, fuzzy -#~ msgid "XNET" -#~ msgstr "XNET" +#~ msgid "Flow Tools Binary Path" +#~ msgstr "Flow Tools二進制路徑" #, fuzzy -#~ msgid "EMCON" -#~ msgstr "EMCON" +#~ msgid "The path to your flow-cat, flow-filter, and flow-stat binary." +#~ msgstr "flow-cat,flow-filter和flow-stat二進製文件的路徑。" #, fuzzy -#~ msgid "ARGUS" -#~ msgstr "ARGUS" +#~ msgid "Flow Tools Work Directory" +#~ msgstr "Flow Tools工作目錄" #, fuzzy -#~ msgid "PUP" -#~ msgstr "小狗" +#~ msgid "This is the path to a temporary directory to do work." +#~ msgstr "這是臨時目錄的工作路徑。" #, fuzzy -#~ msgid "NVP-II" -#~ msgstr "NVP-II" +#~ msgid "Flows Directory" +#~ msgstr "流程目錄" #, fuzzy -#~ msgid "BBN-RCC-MON" -#~ msgstr "BBN-RCC-MON" +#~ msgid "This is the path to base the path of your flow folder structure." +#~ msgstr "這是基於流文件夾結構路徑的路徑。" #, fuzzy -#~ msgid "IGP" -#~ msgstr "IGP" +#~ msgid "The method by which you wish to resolve hostnames." +#~ msgstr "您希望解析主機名的方法。" #, fuzzy -#~ msgid "EGP" -#~ msgstr "EGP" +#~ msgid "Use Local Server" +#~ msgstr "使用本地服務器" #, fuzzy -#~ msgid "CBT" -#~ msgstr "CBT" +#~ msgid "Use DNS Server Below" +#~ msgstr "使用下面的DNS服務器" #, fuzzy -#~ msgid "ST" -#~ msgstr "ST" +#~ msgid "Don't Resolve DNS" +#~ msgstr "不要解析DNS" #, fuzzy -#~ msgid "IPENCAP" -#~ msgstr "ipencap則" +#~ msgid "Alternate DNS Server" +#~ msgstr "備用DNS服務器" #, fuzzy -#~ msgid "GGP" -#~ msgstr "GGP" +#~ msgid "This is the DNS Server used to resolve names." +#~ msgstr "這是用於解析名稱的DNS服務器。" #, fuzzy -#~ msgid "IGMP" -#~ msgstr "IGMP" +#~ msgid "Strip Domain Names" +#~ msgstr "剝離域名" #, fuzzy -#~ msgid "ICMP" -#~ msgstr "ICMP" +#~ msgid "A comma delimited list of domains names to strip from the domain." +#~ msgstr "以逗號分隔的域名列表,用於從域中刪除。" #, fuzzy -#~ msgid "UDP" -#~ msgstr "UDP" +#~ msgid "New Flow" +#~ msgstr "新流程" #, fuzzy -#~ msgid "TCP" -#~ msgstr "TCP" +#~ msgid "Select a Filter to display data" +#~ msgstr "打印報告" diff --git a/run_schedule.php b/run_schedule.php new file mode 100644 index 0000000..2379f2b --- /dev/null +++ b/run_schedule.php @@ -0,0 +1,141 @@ + $value) { + switch($arg) { + case 'force': + $force = true; + + break; + case 'debug': + $debug = true; + + break; + case 'schedule': + $id = $value; + + break; + case 'version': + display_version(); + exit(0); + + break; + case 'help': + display_help(); + exit(0); + + break; + default: + print 'ERROR: Invalid option ' . $arg . PHP_EOL; + exit(1); + + break; + } +} + +/* silently end if the registered process is still running, or process table missing */ +if (!$force) { + if (!register_process_start('flowsched', $id, 0, 1200)) { + exit(0); + } +} + +$t = time(); +$r = intval($t / 60) * 60; +$start = microtime(true); + +$schedule = db_fetch_row_prepared('SELECT * + FROM plugin_flowview_schedules + WHERE id = ?', + array($id)); + +if (cacti_sizeof($schedule)) { + db_execute_prepared('UPDATE plugin_flowview_schedules + SET lastsent = ? + WHERE id = ?', + array($r, $id)); + + plugin_flowview_run_schedule($id); + + $end = microtime(true); + + $cacti_stats = sprintf('Time:%01.4f Schedule:%s', round($end-$start,2), $id); + + cacti_log('FLOWVIEW SCHEDULE STATS: ' . $cacti_stats , true, 'SYSTEM'); +} + +if (!$force) { + unregister_process('flowsched', $id, 0); +} + +function debug($string) { + global $debug; + + if ($debug) { + print 'DEBUG: ' . trim($string) . PHP_EOL; + } +} + +function display_version() { + $version = get_cacti_cli_version(); + print "Cacti FlowView Schedule Poller, Version $version, " . COPYRIGHT_YEARS . PHP_EOL; +} + +function display_help() { + display_version(); + + print PHP_EOL . 'usage: schedule_run.php --schedule=ID [--debug]' . PHP_EOL . PHP_EOL; + + print 'Runs the Selected Report and Sends to Receivers.' . PHP_EOL . PHP_EOL; + + print 'Required:' . PHP_EOL; + print ' --schedule=ID The Schedule to Run.' . PHP_EOL . PHP_EOL; + print 'Options:' . PHP_EOL; + print ' --force Force running even if another is running.' . PHP_EOL . PHP_EOL; + print ' --debug Provide some debug output during collection.' . PHP_EOL . PHP_EOL; +} +